]> git.cworth.org Git - ttt/blob - src/Makefile.am
* /games/tictactoe/src/ttt-board.c, ttt-board.h: Implemented board_init
[ttt] / src / Makefile.am
1 bin_PROGRAMS = ttt-server ttt-client
2
3 ttt_common_sources =            \
4         ttt-args.c              \
5         ttt-args.h              \
6         ttt-board.c             \
7         ttt-board.h             \
8         ttt-command.c           \
9         ttt-command.h           \
10         ttt-error.c             \
11         ttt-error.h             \
12         x.c                     \
13         x.h
14
15 ttt_client_SOURCES =            \
16         $(ttt_common_sources)   \
17         ttt-client.c
18
19 ttt_server_SOURCES =            \
20         $(ttt_common_sources)   \
21         ttt-server.c
22
23 AM_CFLAGS = $(WARN_CFLAGS) $(TTT_CFLAGS)
24 ttt_client_LDFLAGS = $(TTT_LIBS)
25 ttt_server_LDFLAGS = $(TTT_LIBS)