Moved CSI-related code out of termkey.c into new driver-csi.c

This commit is contained in:
Paul LeoNerd Evans
2008-10-06 23:27:19 +01:00
parent d871cb39c6
commit f5c6ecf9af
4 changed files with 635 additions and 562 deletions

View File

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