mirror of
https://github.com/torvalds/linux.git
synced 2024-11-30 16:11:38 +00:00
10 lines
116 B
Makefile
10 lines
116 B
Makefile
|
CC := $(CROSS_COMPILE)gcc
|
||
|
CFLAGS := -I../../usr/include
|
||
|
|
||
|
PROGS := crc32hash
|
||
|
|
||
|
all: $(PROGS)
|
||
|
|
||
|
clean:
|
||
|
rm -fr $(PROGS)
|