mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-29 14:05:19 +08:00
17 lines
194 B
Makefile
17 lines
194 B
Makefile
|
|
||
|
FILES=test-hello
|
||
|
|
||
|
all: $(FILES)
|
||
|
|
||
|
BUILD = $(CC) -o $(OUTPUT)$@ $@.c
|
||
|
|
||
|
###############################
|
||
|
|
||
|
test-hello: test-hello.c
|
||
|
$(BUILD)
|
||
|
|
||
|
###############################
|
||
|
|
||
|
clean:
|
||
|
rm -f $(FILES)
|