tinywebd

view Makefile @ 9:0244b08cc9d3

fixed the mime-type bug
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 18 Apr 2015 21:36:07 +0300
parents
children 0dd50a23f3dd
line source
1 src = $(wildcard src/*.c)
2 obj = $(src:.c=.o)
3 dep = $(obj:.o=.d)
4 bin = tinywebd
6 CFLAGS = -pedantic -Wall -g
8 $(bin): $(obj)
9 $(CC) -o $@ $(obj) $(LDFLAGS)
11 -include $(dep)
13 %.d: %.c
14 @$(CPP) $(CFLAGS) $< -MM -MT $(@:.d=.o) >$@
16 .PHONY: clean
17 clean:
18 rm -f $(obj) $(bin)