aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-10-06 23:27:19 +0100
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-10-06 23:27:19 +0100
commitf5c6ecf9af6a024c1c4a0d486303516a6381ddc7 (patch)
tree1d96e396a737e68c5136d7a6008b54336482185b /Makefile
parentd871cb39c6f52b14e9722ea76e978a931b599203 (diff)
downloadtermo-f5c6ecf9af6a024c1c4a0d486303516a6381ddc7.tar.gz
termo-f5c6ecf9af6a024c1c4a0d486303516a6381ddc7.tar.xz
termo-f5c6ecf9af6a024c1c4a0d486303516a6381ddc7.zip
Moved CSI-related code out of termkey.c into new driver-csi.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cbfba5c..68eb037 100644
--- a/Makefile
+++ b/Makefile
@@ -7,10 +7,10 @@ endif
all: demo
-demo: termkey.o demo.c
+demo: termkey.o driver-csi.o demo.c
gcc $(CCFLAGS) $(LDFLAGS) -o $@ $^
-termkey.o: termkey.c
+%.o: %.c
gcc $(CCFLAGS) -o $@ -c $^
.PHONY: clean