blob: b3f6372ad8b0a3e01c0c2023a4f3049040c2e8b1 [file] [log] [blame]
Ingo Molnarb6aa9972013-09-30 10:08:24 +02001
2FILES=test-hello
3
4all: $(FILES)
5
6BUILD = $(CC) -o $(OUTPUT)$@ $@.c
7
8###############################
9
10test-hello: test-hello.c
11 $(BUILD)
12
13###############################
14
15clean:
16 rm -f $(FILES)