diff options
author | Simon Howard | 2006-03-30 19:08:37 +0000 |
---|---|---|
committer | Simon Howard | 2006-03-30 19:08:37 +0000 |
commit | 08c59baa5e747bd65468a2e5b7ba47e195742e23 (patch) | |
tree | d216b2942b0da1419525ecabd9154b21446ef0a8 /src/Makefile.am | |
parent | 4c5d0e68a46ae1f1baf3d9407b0dbd08eda9b987 (diff) | |
download | chocolate-doom-08c59baa5e747bd65468a2e5b7ba47e195742e23.tar.gz chocolate-doom-08c59baa5e747bd65468a2e5b7ba47e195742e23.tar.bz2 chocolate-doom-08c59baa5e747bd65468a2e5b7ba47e195742e23.zip |
Split off timer code into separate i_timer.c file. Add d_dedicated.c
and build chocolate-server, a standalone dedicated server.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 455
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 56b7468c..c5824dac 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,10 +1,27 @@ gamesdir = $(prefix)/games -games_PROGRAMS = chocolate-doom +games_PROGRAMS = chocolate-doom chocolate-server AM_CFLAGS = -I../textscreen @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ -Wall +DEDSERV_FILES=\ +d_dedicated.c \ +i_main.c i_main.h \ +i_timer.c i_timer.h \ +m_argv.c m_argv.h \ +net_common.c net_common.h \ +net_dedicated.c net_dedicated.h \ +net_io.c net_io.h \ +net_packet.c net_packet.h \ +net_sdl.c net_sdl.h \ +net_server.c net_server.h \ +net_structrw.c net_structrw.h \ +z_native.c z_zone.h + +chocolate_server_SOURCES=$(DEDSERV_FILES) +chocolate_server_LDADD = @LDFLAGS@ @SDL_LIBS@ @SDLNET_LIBS@ + SOURCE_FILES=\ am_map.c am_map.h \ deh_ammo.c \ @@ -45,6 +62,7 @@ i_main.c \ info.c info.h \ i_sound.c i_sound.h \ i_system.c i_system.h \ +i_timer.c i_timer.h \ i_video.c i_video.h \ m_argv.c m_argv.h \ m_bbox.c m_bbox.h \ |