mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08: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)
|