mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 05:11:48 +00:00
10 lines
111 B
Makefile
10 lines
111 B
Makefile
|
CC := $(CROSS_COMPILE)gcc
|
||
|
CFLAGS := -I../../usr/include
|
||
|
|
||
|
PROGS := dslm
|
||
|
|
||
|
all: $(PROGS)
|
||
|
|
||
|
clean:
|
||
|
rm -fr $(PROGS)
|