f3b4e0687b41c374a3cd76bebe7e1cbeedde8a74
[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
9
10 ivac: $(OBJS)
11         $(CC) -o $@ $(OBJS) ivac.c $(LIBS)
12 all: ivac
13
14 clean:
15         rm -f $(OBJS) ivac
16
17 remake: clean all