2001-02-19 21:15:25 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
#
|
|
|
|
# Makefile.am
|
|
|
|
#
|
|
|
|
# Automake-using build system for QuakeForge
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 Jeff Teunissen <deek@quakeforge.net>
|
|
|
|
#
|
|
|
|
# This Makefile is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
#
|
|
|
|
# See the GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to:
|
|
|
|
#
|
|
|
|
# Free Software Foundation, Inc.
|
|
|
|
# 59 Temple Place - Suite 330
|
|
|
|
# Boston, MA 02111-1307, USA
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
2001-04-15 06:18:06 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
|
|
|
# Stuff that is common to both client and server
|
2001-04-15 06:18:06 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/qw/include
|
2001-09-30 23:24:53 +00:00
|
|
|
SDL_LIBS = @SDL_LIBS@
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-20 19:39:38 +00:00
|
|
|
bin_PROGRAMS= @QW_TARGETS@
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-09-25 23:32:11 +00:00
|
|
|
EXTRA_PROGRAMS= qw-client-fbdev qw-client-glx qw-client-mgl qw-client-sdl \
|
2001-11-21 02:36:48 +00:00
|
|
|
qw-client-sdl32 qw-client-sgl qw-client-svga qw-client-3dfx \
|
|
|
|
qw-client-wgl qw-client-x11 qw-server qw-master
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-06-14 19:52:38 +00:00
|
|
|
if ASM_ARCH
|
2001-10-03 17:50:36 +00:00
|
|
|
asm= libasm.la
|
2001-06-14 19:52:38 +00:00
|
|
|
else
|
2001-10-03 17:50:36 +00:00
|
|
|
asm=
|
2001-06-14 19:52:38 +00:00
|
|
|
endif
|
|
|
|
|
2002-06-01 03:00:13 +00:00
|
|
|
asm_src= worlda.S
|
2001-10-03 17:50:36 +00:00
|
|
|
|
|
|
|
libasm_la_SOURCES= $(asm_src)
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES= libqfnet.la $(asm)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-04-11 18:42:55 +00:00
|
|
|
common_sources= com.c game.c msg_ucmd.c pmove.c pmovetst.c net_packetlog.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-30 18:35:19 +00:00
|
|
|
common_ldflags= -export-dynamic
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
# ... Network type
|
2001-10-03 17:50:36 +00:00
|
|
|
ipv6_src= net_udp6.c
|
|
|
|
ipv4_src= net_udp.c
|
2001-02-19 21:15:25 +00:00
|
|
|
if NETTYPE_IPV6
|
2001-10-03 17:50:36 +00:00
|
|
|
ipvX_src= $(ipv6_src)
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-10-03 17:50:36 +00:00
|
|
|
ipvX_src= $(ipv4_src)
|
2001-02-19 21:15:25 +00:00
|
|
|
endif
|
2001-10-03 17:50:36 +00:00
|
|
|
libqfnet_la_SOURCES= net_chan.c $(ipvX_src)
|
|
|
|
EXTRA_libqfnet_la_SOURCES= $(ipv4_src) $(ipv6_src)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Server builds
|
|
|
|
#
|
|
|
|
# ... System type
|
|
|
|
if SYSTYPE_WIN32
|
2001-05-08 20:53:25 +00:00
|
|
|
syssv_SRC= sv_sys_win.c
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-04-10 21:43:57 +00:00
|
|
|
syssv_SRC= sv_sys_unix.c
|
2001-02-19 21:15:25 +00:00
|
|
|
endif
|
|
|
|
|
2001-09-25 23:47:13 +00:00
|
|
|
server_sources= crudefile.c sv_ccmds.c sv_cvar.c sv_ents.c \
|
2001-08-27 22:36:28 +00:00
|
|
|
sv_init.c sv_main.c sv_model.c sv_move.c \
|
2001-08-25 02:47:11 +00:00
|
|
|
sv_nchan.c sv_phys.c sv_pr_cmds.c sv_progs.c sv_send.c \
|
2002-07-05 07:10:39 +00:00
|
|
|
sv_user.c world.c $(syssv_SRC)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-10-03 19:52:03 +00:00
|
|
|
qf_server_LIBS= \
|
2001-12-02 20:11:21 +00:00
|
|
|
$(SERVER_PLUGIN_STATIC_LIBS) \
|
2002-07-05 07:10:39 +00:00
|
|
|
$(top_builddir)/libs/gamecode/builtins/bi_cmd.lo \
|
2001-10-03 19:52:03 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
2001-08-21 22:34:20 +00:00
|
|
|
$(top_builddir)/libs/gamecode/builtins/libQFgamecode_builtins.la \
|
2002-01-20 04:10:36 +00:00
|
|
|
$(top_builddir)/libs/gamecode/engine/libQFgamecode.la \
|
2001-09-16 05:41:28 +00:00
|
|
|
$(top_builddir)/libs/console/libQFconsole.la \
|
2001-05-20 23:30:16 +00:00
|
|
|
$(top_builddir)/libs/util/libQFutil.la
|
2001-05-17 16:52:47 +00:00
|
|
|
|
2001-09-25 23:47:13 +00:00
|
|
|
qw_server_SOURCES= $(common_sources) $(server_sources)
|
2001-09-25 23:32:11 +00:00
|
|
|
qw_server_LDADD= libqfnet.la libasm.la $(qf_server_LIBS) $(NET_LIBS) $(DL_LIBS) $(CURSES_LIBS)
|
2001-09-16 05:41:28 +00:00
|
|
|
qw_server_LDFLAGS= $(common_ldflags)
|
2001-09-25 23:32:11 +00:00
|
|
|
qw_server_DEPENDENCIES= libqfnet.la libasm.la $(qf_server_LIBS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-09-18 03:24:26 +00:00
|
|
|
qw_master_SOURCES= master.c
|
2002-02-12 17:44:41 +00:00
|
|
|
qw_master_LDADD= $(top_builddir)/libs/util/libQFutil.la $(NET_LIBS)
|
|
|
|
qw_master_LDFLAGS= $(common_ldflags) -static
|
2001-09-18 03:24:26 +00:00
|
|
|
|
2002-01-18 22:35:46 +00:00
|
|
|
cl_plugin_LIBS= \
|
2002-01-20 04:10:36 +00:00
|
|
|
$(CLIENT_PLUGIN_STATIC_LIBS) \
|
|
|
|
$(top_builddir)/libs/gamecode/builtins/libQFcsqc.la
|
2002-01-18 22:35:46 +00:00
|
|
|
|
2001-10-03 19:52:03 +00:00
|
|
|
qf_client_LIBS= \
|
2002-01-16 21:53:42 +00:00
|
|
|
$(top_builddir)/libs/console/libQFconsole.la \
|
2001-10-03 19:52:03 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFjs.la \
|
2001-08-21 22:34:20 +00:00
|
|
|
$(top_builddir)/libs/gamecode/builtins/libQFgamecode_builtins.la \
|
2002-01-20 04:10:36 +00:00
|
|
|
$(top_builddir)/libs/gamecode/engine/libQFgamecode.la \
|
2001-06-01 22:55:33 +00:00
|
|
|
$(top_builddir)/libs/audio/libQFcd.la \
|
2001-05-20 23:30:16 +00:00
|
|
|
$(top_builddir)/libs/audio/libQFsound.la \
|
|
|
|
$(top_builddir)/libs/util/libQFutil.la
|
2001-05-17 16:52:47 +00:00
|
|
|
|
2002-01-19 05:45:48 +00:00
|
|
|
client_LIBS= libqfnet.la libasm.la $(qf_client_LIBS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-09-25 23:47:13 +00:00
|
|
|
client_sources= cl_cam.c cl_cmd.c cl_cvar.c cl_demo.c cl_ents.c cl_input.c \
|
2001-08-10 00:28:57 +00:00
|
|
|
cl_main.c cl_misc.c cl_ngraph.c cl_parse.c cl_pred.c \
|
|
|
|
cl_screen.c cl_skin.c cl_slist.c cl_tent.c cl_view.c \
|
2002-01-16 21:53:42 +00:00
|
|
|
locs.c sbar.c skin.c teamplay.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Software-rendering clients
|
|
|
|
|
2001-09-25 23:32:11 +00:00
|
|
|
# We need libQFrenderer_sw to always be static -- there's assembler in there
|
2001-09-28 05:40:14 +00:00
|
|
|
soft_LIBS= $(top_builddir)/libs/video/renderer/libQFrenderer_sw.la \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels_sw.la
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
# ... Linux FBDev
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_fbdev_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(soft_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFfbdev.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_fbdev_SOURCES= $(common_sources) $(client_sources) cl_sys_unix.c
|
|
|
|
qw_client_fbdev_LDADD= $(qw_client_fbdev_libs) $(NET_LIBS)
|
|
|
|
qw_client_fbdev_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_fbdev_DEPENDENCIES= $(qw_client_fbdev_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... SciTech MGL
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_mgl_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(soft_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFmgl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_mgl_SOURCES= $(common_sources) $(client_sources) cl_sys_win.c
|
|
|
|
qw_client_mgl_LDADD= $(qw_client_mgl_libs) $(MGL_LIBS) $(NET_LIBS)
|
|
|
|
qw_client_mgl_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_mgl_DEPENDENCIES= $(qw_client_mgl_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
# ... Simple DirectMedia Layer, version 1.2 and higher
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_sdl_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(soft_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFsdl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_sdl_SOURCES= $(common_sources) $(client_sources) cl_sys_sdl.c
|
|
|
|
qw_client_sdl_LDADD= $(qw_client_sdl_libs) $(SDL_LIBS) $(NET_LIBS)
|
|
|
|
qw_client_sdl_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_sdl_DEPENDENCIES= $(qw_client_sdl_libs)
|
2001-09-25 23:32:11 +00:00
|
|
|
|
|
|
|
# ... 32-bit software, SDL
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_sdl32_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-28 05:40:14 +00:00
|
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer_sw32.la \
|
2001-11-21 19:13:53 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels_sw.la \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFsdl32.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_sdl32_SOURCES=$(qw_client_sdl_SOURCES)
|
|
|
|
qw_client_sdl32_LDADD= $(qw_client_sdl32_libs) $(SDL_LIBS) $(NET_LIBS)
|
|
|
|
qw_client_sdl32_LDFLAGS=$(common_ldflags)
|
|
|
|
qw_client_sdl32_DEPENDENCIES= $(qw_client_sdl32_libs)
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
# ... Linux SVGAlib
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_svga_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(soft_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFsvga.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_svga_SOURCES= $(common_sources) $(client_sources) cl_sys_unix.c
|
|
|
|
qw_client_svga_LDADD= $(qw_client_svga_libs) $(SVGA_LIBS) $(NET_LIBS)
|
|
|
|
qw_client_svga_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_svga_DEPENDENCIES= $(qw_client_svga_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... X11
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_x11_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(soft_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFx11.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_x11_SOURCES= $(common_sources) $(client_sources) cl_sys_unix.c
|
|
|
|
qw_client_x11_LDADD= $(qw_client_x11_libs) \
|
|
|
|
$(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
|
|
|
|
$(X_EXTRA_LIBS) $(X_SHM_LIB) $(NET_LIBS)
|
|
|
|
qw_client_x11_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_x11_DEPENDENCIES= $(qw_client_x11_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# OpenGL-using clients
|
|
|
|
|
2001-09-25 23:32:11 +00:00
|
|
|
opengl_LIBS= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
|
|
|
$(top_builddir)/libs/models/libQFmodels_gl.la
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... OpenGL in X Window
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_glx_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(opengl_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFglx.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_glx_SOURCES= $(common_sources) $(client_sources) cl_sys_unix.c
|
|
|
|
qw_client_glx_LDADD= $(qw_client_glx_libs) \
|
|
|
|
$(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
|
|
|
|
-lXext $(X_EXTRA_LIBS) $(DL_LIBS) $(NET_LIBS)
|
|
|
|
qw_client_glx_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_glx_DEPENDENCIES= $(qw_client_glx_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-11-21 02:36:48 +00:00
|
|
|
# ... Linux 3DFX
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_3dfx_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(opengl_LIBS) \
|
2002-01-19 23:06:28 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFtdfx.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2001-11-21 02:36:48 +00:00
|
|
|
qw_client_3dfx_SOURCES= $(common_sources) $(client_sources) cl_sys_unix.c
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_3dfx_LDADD= $(qw_client_3dfx_libs) \
|
2002-06-24 15:56:01 +00:00
|
|
|
$(SVGA_LIBS) $(NET_LIBS)
|
2002-06-01 03:04:11 +00:00
|
|
|
qw_client_3dfx_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_3dfx_DEPENDENCIES= $(qw_client_3dfx_libs)
|
2001-11-21 02:36:48 +00:00
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
# ... Simple DirectMedia Layer, version 1.2 and higher, in GL mode
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_sgl_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(opengl_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFsgl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_sgl_SOURCES= $(common_sources) $(client_sources) cl_sys_sdl.c
|
|
|
|
qw_client_sgl_LDADD= $(qw_client_sgl_libs) $(SDL_LIBS) $(DL_LIBS) $(NET_LIBS)
|
|
|
|
qw_client_sgl_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_sgl_DEPENDENCIES= $(qw_client_sgl_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 06:18:06 +00:00
|
|
|
# ... SGI/Microsoft WGL (Windows OpenGL)
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_wgl_libs= \
|
|
|
|
$(cl_plugin_LIBS) \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(opengl_LIBS) \
|
|
|
|
$(top_builddir)/libs/video/targets/libQFwgl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
|
|
|
qw_client_wgl_SOURCES= $(common_sources) $(client_sources) cl_sys_win.c
|
|
|
|
qw_client_wgl_LDADD= $(qw_client_wgl_libs) -lgdi32 -lwinmm $(NET_LIBS)
|
|
|
|
qw_client_wgl_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_wgl_DEPENDENCIES= $(qw_client_wgl_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Stuff that doesn't get linked into an executable NEEDS to be mentioned here,
|
|
|
|
# or it won't be distributed with 'make dist'
|
2001-10-03 17:50:36 +00:00
|
|
|
EXTRA_DIST= $(asm_src)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Kill the temp files, hopefully.
|
|
|
|
CLEANFILES = *.i *.s $(YACCLEX_CLEANFILES)
|
2001-08-15 20:55:22 +00:00
|
|
|
|
|
|
|
cl_sys_sdl.o: cl_sys_sdl.c
|
|
|
|
@echo '$(COMPILE) $(SDL_CFLAGS) -c $<'; \
|
2001-09-11 06:34:03 +00:00
|
|
|
if test -d .deps; then \
|
|
|
|
$(COMPILE) $(SDL_CFLAGS) -Wp,-MD,.deps/$(*F).pp -c $<; \
|
|
|
|
else \
|
|
|
|
$(COMPILE) $(SDL_CFLAGS) -c $<; \
|
|
|
|
fi
|
|
|
|
@-if test -d .deps; then cp .deps/$(*F).pp .deps/$(*F).P; \
|
2001-08-15 20:55:22 +00:00
|
|
|
tr ' ' '\012' < .deps/$(*F).pp \
|
|
|
|
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
|
|
|
>> .deps/$(*F).P; \
|
2001-09-11 06:34:03 +00:00
|
|
|
rm .deps/$(*F).pp; \
|
|
|
|
fi
|