added ncurses based display system (minimal and still full of bugs) :o
[my-code/ivac.git] / src / Makefile
index 0acc428..396ebc8 100644 (file)
@@ -3,9 +3,9 @@
 INCLUDEDIR = /usr/include
 
 CFLAGS = -DDEBUG -O3 -Wall
-LIBS =
+LIBS = -lncurses
 
-OBJS = network.o event.o input.o
+OBJS = network.o event.o input.o display.o
 
 ivac: $(OBJS)
        $(CC) -o $@ $(OBJS) ivac.c $(LIBS)