blob: a134bef67ebbde01d89bce5bc273aac00d45a552 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CCFLAGS=-Wall -Iinclude -std=c99
LDFLAGS=
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
|