]> git.cworth.org Git - ttt/blob - src/Makefile.am
2005-11-11 Carl Worth <cworth@cworth.org>
[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-socket.c            \
9         ttt-socket.h            \
10         x.c                     \
11         x.h
12
13 ttt_client_SOURCES =            \
14         $(ttt_common_sources)   \
15         ttt.c
16
17 ttt_server_SOURCES =            \
18         $(ttt_common_sources)   \
19         ttt-client.c            \
20         ttt-server.c
21
22 AM_CFLAGS = $(WARN_CFLAGS) $(TTT_CFLAGS)
23 ttt_client_LDFLAGS = $(TTT_LIBS)
24 ttt_server_LDFLAGS = $(TTT_LIBS) -lpthread