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