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
14 all: tetrinet tetrinet-server
17 cp
-p tetrinet tetrinet-server
/usr
/games
20 rm -f tetrinet tetrinet-server
*.o
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
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