completely removed ncurses, added minimal audio functions
[my-code/ivac.git] / src / Makefile
index f3b4e06..22c8045 100644 (file)
@@ -3,9 +3,9 @@
 INCLUDEDIR = /usr/include
 
 CFLAGS = -DDISPLAY -DDEBUG -O3 -Wall
-LIBS = -lncurses
+LIBS =
 
-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)