ChangeLog update
[tetrinet.git] / Makefile
blob9018ba3cc7bf38d071aaf0c44153113fa713fc9b
1 CC = cc
3 CFLAGS = -O2 -I/usr/include/ncurses -DHAVE_IPV6 -g -Wall
4 OBJS = sockets.o tetrinet.o tetris.o tty.o xwin.o
6 ### If you want to have -server tetrinet client option, comment the two lines
7 ### above and uncomment this instead.
9 # CFLAGS = -O2 -I/usr/include/ncurses -DHAVE_IPV6 -g -DBUILTIN_SERVER -Wall
10 # OBJS = server.o sockets.o tetrinet.o tetris.o tty.o xwin.o
12 ########
14 all: tetrinet tetrinet-server
16 install: all
17 cp -p tetrinet tetrinet-server /usr/games
19 clean:
20 rm -f tetrinet tetrinet-server *.o
22 spotless: clean
24 ########
26 tetrinet: $(OBJS)
27 $(CC) -o $@ $(OBJS) -lncurses
29 tetrinet-server: server.c sockets.c tetrinet.c tetris.c server.h sockets.h tetrinet.h tetris.h
30 $(CC) $(CFLAGS) -o $@ -DSERVER_ONLY server.c sockets.c tetrinet.c tetris.c
32 .c.o:
33 $(CC) $(CFLAGS) -c $<
35 server.o: server.c tetrinet.h tetris.h server.h sockets.h
36 sockets.o: sockets.c sockets.h tetrinet.h
37 tetrinet.o: tetrinet.c tetrinet.h io.h server.h sockets.h tetris.h
38 tetris.o: tetris.c tetris.h tetrinet.h io.h sockets.h
39 tty.o: tty.c tetrinet.h tetris.h io.h
40 xwin.o: xwin.c tetrinet.h tetris.h io.h
42 tetrinet.h: io.h