changes in display method -> ncurses (strange *printf probs :/)
[my-code/ivac.git] / src / Makefile
index f3b4e06..6ea10fd 100644 (file)
@@ -5,10 +5,10 @@ INCLUDEDIR = /usr/include
 CFLAGS = -DDISPLAY -DDEBUG -O3 -Wall
 LIBS = -lncurses
 
-OBJS = network.o event.o input.o display.o
+OBJS = network.o event.o input.o display.o audio.o
 
 ivac: $(OBJS)
-       $(CC) -o $@ $(OBJS) ivac.c $(LIBS)
+       $(CC) $(CFLAGS) -o $@ $(OBJS) ivac.c $(LIBS)
 all: ivac
 
 clean: