changes in display method -> ncurses (strange *printf probs :/)
[my-code/ivac.git] / src / Makefile
1 # Makefile of ivac
2
3 INCLUDEDIR = /usr/include
4
5 CFLAGS = -DDISPLAY -DDEBUG -O3 -Wall
6 LIBS = -lncurses
7
8 OBJS = network.o event.o input.o display.o audio.o
9
10 ivac: $(OBJS)
11         $(CC) $(CFLAGS) -o $@ $(OBJS) ivac.c $(LIBS)
12 all: ivac
13
14 clean:
15         rm -f $(OBJS) ivac
16
17 remake: clean all