Makefile 194 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

FILES=test-hello

all: $(FILES)

BUILD = $(CC) -o $(OUTPUT)$@ $@.c

###############################

test-hello: test-hello.c
	$(BUILD)

###############################

clean:
	rm -f $(FILES)