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
10 lines
116 B
Makefile
10 lines
116 B
Makefile
|
|
CC := $(CROSS_COMPILE)gcc
|
||
|
|
CFLAGS := -I../../usr/include
|
||
|
|
|
||
|
|
PROGS := getdelays
|
||
|
|
|
||
|
|
all: $(PROGS)
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -fr $(PROGS)
|