termo/Makefile

19 lines
251 B
Makefile
Raw Normal View History

2008-02-07 01:58:41 +01:00
CCFLAGS=-Wall -Iinclude -std=c99
LDFLAGS=
2008-10-07 00:24:54 +02:00
ifeq ($(DEBUG),1)
CCFLAGS+=-ggdb -DDEBUG
endif
2008-02-07 01:58:41 +01:00
all: demo
demo: termkey.o demo.c
gcc $(CCFLAGS) $(LDFLAGS) -o $@ $^
termkey.o: termkey.c
gcc $(CCFLAGS) -o $@ -c $^
.PHONY: clean
clean:
rm -f *.o demo