amiga_imgv
diff tools/convhammer/Makefile @ 0:a4788c959918
initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 25 Oct 2017 19:34:53 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tools/convhammer/Makefile Wed Oct 25 19:34:53 2017 +0300 1.3 @@ -0,0 +1,12 @@ 1.4 +src = $(wildcard *.c) 1.5 +obj = $(src:.c=.o) 1.6 +bin = convhammer 1.7 + 1.8 +CFLAGS = -pedantic -Wall -g -I../../src 1.9 + 1.10 +$(bin): $(obj) 1.11 + $(CC) -o $@ $(obj) $(LDFLAGS) 1.12 + 1.13 +.PHONY: clean 1.14 +clean: 1.15 + rm -f $(obj) $(bin)