From d47633eb2c209422c89056ddc1f165c1d88efe77 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 5 Nov 2005 16:17:32 +0000 Subject: [PATCH] 2005-11-05 Carl Worth * src/Makefile.am: Break things up for separate ttt-client and ttt-server and programs. --- ChangeLog | 5 +++++ src/Makefile.am | 26 ++++++++++++++++++++------ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index e69de29..63169bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -0,0 +1,5 @@ +2005-11-05 Carl Worth + + * src/Makefile.am: Break things up for separate ttt-client and + ttt-server and programs. + diff --git a/src/Makefile.am b/src/Makefile.am index b7bce50..9b52b44 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,9 +1,23 @@ -bin_PROGRAMS = ttt +bin_PROGRAMS = ttt-server ttt-client -ttt_SOURCES = \ - args.c \ - args.h \ - ttt.c +ttt_common_sources = \ + ttt-args.c \ + ttt-args.h \ + ttt-board.c \ + ttt-board.h \ + ttt-command.c \ + ttt-command.h \ + ttt-error.c \ + ttt-error.h + +ttt_client_SOURCES = \ + $(ttt_common_sources) \ + ttt-client.c + +ttt_server_SOURCES = \ + $(ttt_common_sources) \ + ttt-server.c AM_CFLAGS = $(WARN_CFLAGS) $(TTT_CFLAGS) -ttt_LDFLAGS = $(TTT_LIBS) +ttt_client_LDFLAGS = $(TTT_LIBS) +ttt_server_LDFLAGS = $(TTT_LIBS) -- 2.43.0