Added initial attempt at a terminfo-driven driver

This commit is contained in:
Paul LeoNerd Evans
2008-10-08 02:04:47 +01:00
parent e76b195c59
commit c974e61a8d
4 changed files with 193 additions and 2 deletions

View File

@@ -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 $^