mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 15:14:18 +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)
|