You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
12 lines
149 B
Makefile
12 lines
149 B
Makefile
|
|
# Makefile for vm tools
|
||
|
|
|
||
|
|
CC = $(CROSS_COMPILE)gcc
|
||
|
|
CFLAGS = -Wall -Wextra
|
||
|
|
|
||
|
|
all: page-types
|
||
|
|
%: %.c
|
||
|
|
$(CC) $(CFLAGS) -o $@ $^
|
||
|
|
|
||
|
|
clean:
|
||
|
|
$(RM) page-types
|