aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-10-08 02:04:47 +0100
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-10-08 02:04:47 +0100
commitc974e61a8dbf83b6691992f89778262d2780cc74 (patch)
tree87342509157789a70da0c856cc91d26d1ff30850 /Makefile
parente76b195c598091c079fa42b1e08ed93baa4c40ad (diff)
downloadtermo-c974e61a8dbf83b6691992f89778262d2780cc74.tar.gz
termo-c974e61a8dbf83b6691992f89778262d2780cc74.tar.xz
termo-c974e61a8dbf83b6691992f89778262d2780cc74.zip
Added initial attempt at a terminfo-driven driver
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 68eb037..22940e7 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,8 @@ endif
all: demo
-demo: termkey.o driver-csi.o demo.c
- gcc $(CCFLAGS) $(LDFLAGS) -o $@ $^
+demo: termkey.o driver-csi.o driver-ti.o demo.c
+ gcc $(CCFLAGS) $(LDFLAGS) -o $@ $^ -lncurses
%.o: %.c
gcc $(CCFLAGS) -o $@ -c $^