## Process this file with automake to produce Makefile.in SUBDIRS = baseimages weapons . EXTRA_DIST = koth.cfg if BUILD_CLIENT client = koth else client = endif bin_PROGRAMS = $(client) koths kmoron-ai kclever-ai #INCLUDES = -I$(prefix)/include #CFLAGS = -g -O2 -Wall -Wimplicit SHARED_FILES = game.h \ tcpcore.c \ tcpcore.h \ relay.c \ relay.h \ player.c \ player.h \ packets.c \ packets.h \ terrain.c \ terrain.h \ ballistics.c \ ballistics.h \ cfgfile.c \ cfgfile.h \ log.c \ log.h \ demo.c \ demo.h \ conversions.c \ conversions.h koth_SOURCES = $(SHARED_FILES) \ kclient.c \ kclient.h \ gfx.c \ gfx.h \ clihandlers.c \ clihandlers.h \ text.c \ text.h \ sky.c \ sky.h \ font5.xpm \ abram5.xpm koth_LDADD = -Lweapons -lkothweapons -lkothweapongfx @CLIENTLIBS@ @REQLIBS@ koths_SOURCES = $(SHARED_FILES) \ kserver.c \ kserver.h \ svrhandlers.c \ svrhandlers.h koths_LDADD = -Lweapons -lkothweapons @REQLIBS@ kmoron_ai_SOURCES = $(SHARED_FILES) \ ai-moron.c \ aihandlers.c \ aihandlers.h \ rnd.c \ rnd.h \ ai.h \ aiexterns.h kmoron_ai_LDADD = -Lweapons -lkothweapons @REQLIBS@ kclever_ai_SOURCES = $(SHARED_FILES) \ ai-clever.c \ aihandlers.c \ aihandlers.h \ rnd.c \ rnd.h \ ai.h \ aiexterns.h kclever_ai_LDADD = -Lweapons -lkothweapons @REQLIBS@