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-09-25 21:38:05 +00:00
|
|
|
AUTOMAKE_OPTIONS= foreign
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Stuff that is common to both client and server
|
|
|
|
#
|
2001-04-20 19:39:38 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/nq/include
|
2001-09-30 23:24:53 +00:00
|
|
|
SDL_LIBS = @SDL_LIBS@
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-09-25 21:38:05 +00:00
|
|
|
bin_PROGRAMS= @NQ_TARGETS@
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-11-21 02:36:48 +00:00
|
|
|
EXTRA_PROGRAMS= nq-fbdev nq-glx nq-mgl nq-sdl nq-sdl32 nq-sgl nq-svga nq-3dfx \
|
|
|
|
nq-wgl nq-x11 nq-server
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-10-03 20:04:17 +00:00
|
|
|
if ASM_ARCH
|
2002-08-01 19:49:10 +00:00
|
|
|
asm= libasm.a
|
2001-10-03 20:04:17 +00:00
|
|
|
else
|
2002-04-07 05:27:15 +00:00
|
|
|
asm=
|
2001-10-03 20:04:17 +00:00
|
|
|
endif
|
2001-10-03 17:50:36 +00:00
|
|
|
|
2002-08-07 18:20:23 +00:00
|
|
|
noinst_LIBRARIES= @nq_libs@ $(asm)
|
|
|
|
EXTRA_LIBRARIES=libasm.a libclient.a libcommon.a libnet.a libsdl.a libserver.a
|
2002-04-07 05:27:15 +00:00
|
|
|
|
2002-08-07 18:20:23 +00:00
|
|
|
libasm_a_SOURCES= worlda.S
|
|
|
|
libcommon_a_SOURCES=game.c locs.c world.c com.c
|
|
|
|
libsdl_a_SOURCES= sys_sdl.c
|
|
|
|
libsdl_a_CFLAGS= $(SDL_CFLAGS)
|
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
|
|
|
# ... Networking
|
2001-11-24 08:19:34 +00:00
|
|
|
if SYSTYPE_WIN32
|
|
|
|
net_sources= net_win.c net_wins.c
|
|
|
|
else
|
|
|
|
net_sources= net_bsd.c net_udp.c
|
|
|
|
endif
|
2002-08-07 18:20:23 +00:00
|
|
|
libnet_a_SOURCES= net_dgrm.c net_loop.c net_main.c net_vcr.c $(net_sources)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-07 18:20:23 +00:00
|
|
|
EXTRA_libnet_a_SOURCES= \
|
2001-11-24 08:19:34 +00:00
|
|
|
net_dos.c net_bw.c net_bsd.c net_ipx.c net_mp.c net_win.c net_wins.c \
|
|
|
|
net_wipx.c net_udp.c
|
2001-02-19 21:15:25 +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-09-25 21:38:05 +00:00
|
|
|
client_LIBFILES= \
|
2001-10-03 19:52:03 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFjs.la \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/audio/libQFcd.la \
|
2002-01-16 21:53:42 +00:00
|
|
|
$(top_builddir)/libs/audio/libQFsound.la
|
2001-10-03 19:52:03 +00:00
|
|
|
|
|
|
|
server_LIBFILES= \
|
2001-12-02 20:11:21 +00:00
|
|
|
$(SERVER_PLUGIN_STATIC_LIBS) \
|
2001-10-03 19:52:03 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
|
|
|
$(top_builddir)/libs/console/libQFconsole.la
|
|
|
|
|
|
|
|
common_LIBFILES= \
|
2002-08-01 19:49:10 +00:00
|
|
|
libasm.a \
|
2002-08-07 18:20:23 +00:00
|
|
|
libnet.a \
|
2002-01-16 21:53:42 +00:00
|
|
|
$(top_builddir)/libs/console/libQFconsole.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 \
|
2002-11-09 07:13:52 +00:00
|
|
|
$(top_builddir)/libs/util/libQFutil.la \
|
|
|
|
$(top_builddir)/libs/gib/libQFgib.la
|
2001-10-03 19:52:03 +00:00
|
|
|
|
2002-01-19 05:45:48 +00:00
|
|
|
client_LIBS= $(client_LIBFILES) $(common_LIBFILES)
|
2001-05-17 16:52:47 +00:00
|
|
|
|
2001-10-03 19:52:03 +00:00
|
|
|
server_LIBS= $(server_LIBFILES) $(common_LIBFILES) $(NET_LIBS)
|
|
|
|
server_LIB_DEPS=$(server_LIBFILES) $(common_LIBFILES)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-01 19:49:10 +00:00
|
|
|
libclient_a_SOURCES= \
|
|
|
|
cl_cam.c cl_cmd.c cl_demo.c cl_input.c cl_main.c cl_screen.c \
|
2001-10-03 19:52:03 +00:00
|
|
|
cl_parse.c cl_tent.c cl_view.c host_skin.c skin.c \
|
2002-08-01 19:49:10 +00:00
|
|
|
sbar.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-01 19:49:10 +00:00
|
|
|
libserver_a_SOURCES= \
|
|
|
|
host.c host_cmd.c pr_cmds.c sv_cvar.c sv_main.c \
|
2002-02-22 05:28:17 +00:00
|
|
|
sv_move.c sv_cl_phys.c sv_phys.c sv_progs.c sv_user.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-01 19:49:10 +00:00
|
|
|
client_libs= libserver.a libclient.a libcommon.a
|
|
|
|
server_libs = libserver.a libcommon.a
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Software-rendering targets
|
|
|
|
|
2001-09-25 21:38:05 +00:00
|
|
|
# We need libQFrenderer_sw to always be static -- there's assembler in there
|
2001-09-28 05:37:46 +00:00
|
|
|
soft_QFLIBS= $(top_builddir)/libs/video/renderer/libQFrenderer_sw.la \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels_sw.la
|
|
|
|
|
2001-03-29 17:31:15 +00:00
|
|
|
# ... Linux FBDev
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_fbdev_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(soft_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFfbdev.la \
|
|
|
|
$(client_LIBS)
|
2002-08-07 18:20:23 +00:00
|
|
|
nq_fbdev_SOURCES= sys_unix.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_fbdev_LDADD= $(nq_fbdev_libs) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_fbdev_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_fbdev_DEPENDENCIES= $(nq_fbdev_libs)
|
2001-03-29 17:31:15 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
# ... SciTech MGL
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_mgl_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(soft_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFmgl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-07 18:20:23 +00:00
|
|
|
nq_mgl_SOURCES= sys_win.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_mgl_LDADD= $(nq_mgl_libs) $(MGL_LIBS) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_mgl_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_mgl_DEPENDENCIES= $(nq_mgl_libs)
|
2001-09-25 21:38:05 +00:00
|
|
|
|
|
|
|
# ... SDL, version 1.2 and higher
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sdl_libs= \
|
2002-08-07 18:20:23 +00:00
|
|
|
libsdl.a \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(soft_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFsdl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-12 16:42:26 +00:00
|
|
|
nq_sdl_SOURCES=sdl_link.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sdl_LDADD= $(nq_sdl_libs) $(SDL_LIBS) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_sdl_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sdl_DEPENDENCIES= $(nq_sdl_libs)
|
2001-09-25 21:38:05 +00:00
|
|
|
|
|
|
|
# ... 32-bit software, SDL
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sdl32_libs= \
|
2002-08-07 18:20:23 +00:00
|
|
|
libsdl.a \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
2002-04-16 17:03:27 +00:00
|
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer_sw32.la \
|
|
|
|
$(top_builddir)/libs/models/libQFmodels_sw.la \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFsdl32.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-12 16:42:26 +00:00
|
|
|
nq_sdl32_SOURCES=sdl_link.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sdl32_LDADD= $(nq_sdl32_libs) $(SDL_LIBS) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_sdl32_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sdl32_DEPENDENCIES= $(nq_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
|
|
|
nq_svga_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(soft_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFsvga.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-07 18:20:23 +00:00
|
|
|
nq_svga_SOURCES= sys_unix.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_svga_LDADD= $(nq_svga_libs) $(SVGA_LIBS) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_svga_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_svga_DEPENDENCIES= $(nq_svga_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... X11
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_x11_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(soft_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFx11.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-07 18:20:23 +00:00
|
|
|
nq_x11_SOURCES= sys_unix.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_x11_LDADD= $(nq_x11_libs) \
|
|
|
|
$(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
|
|
|
|
$(X_EXTRA_LIBS) $(X_SHM_LIB) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_x11_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_x11_DEPENDENCIES= $(nq_x11_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# OpenGL-using targets
|
|
|
|
|
2002-01-19 05:45:48 +00:00
|
|
|
opengl_QFLIBS= \
|
2001-11-21 02:36:48 +00:00
|
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
2002-01-19 20:45:45 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels_gl.la
|
2002-01-19 05:45:48 +00:00
|
|
|
|
|
|
|
# ... Linux 3DFX
|
|
|
|
nq_3dfx_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(opengl_QFLIBS) \
|
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)
|
2002-08-07 18:20:23 +00:00
|
|
|
nq_3dfx_SOURCES= sys_unix.c
|
2002-06-24 15:56:01 +00:00
|
|
|
nq_3dfx_LDADD= $(nq_3dfx_libs) $(SVGA_LIBS) $(NET_LIBS)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_3dfx_LDFLAGS= $(common_ldflags)
|
|
|
|
nq_3dfx_DEPENDENCIES= $(nq_3dfx_libs)
|
2001-11-21 02:36:48 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
# ... OpenGL in X Window
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_glx_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(opengl_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFglx.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-07 18:20:23 +00:00
|
|
|
nq_glx_SOURCES= sys_unix.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_glx_LDADD= $(nq_glx_libs) \
|
|
|
|
$(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
|
|
|
|
-lXext $(X_EXTRA_LIBS) $(DL_LIBS) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_glx_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_glx_DEPENDENCIES= $(nq_glx_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, in GL mode
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sgl_libs= \
|
2002-08-07 18:20:23 +00:00
|
|
|
libsdl.a \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(opengl_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFsgl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-12 16:42:26 +00:00
|
|
|
nq_sgl_SOURCES=sdl_link.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sgl_LDADD= $(nq_sgl_libs) $(SDL_LIBS) $(DL_LIBS) $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_sgl_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_sgl_DEPENDENCIES= $(nq_sgl_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 05:17:09 +00:00
|
|
|
# ... SGI/Microsoft WGL (Windows OpenGL)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_wgl_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
|
|
|
$(opengl_QFLIBS) \
|
2001-09-25 21:38:05 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFwgl.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-07 18:20:23 +00:00
|
|
|
nq_wgl_SOURCES= conproc.c sys_win.c
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_wgl_LDADD= $(nq_wgl_libs) -lgdi32 -lcomctl32 -lwinmm $(NET_LIBS)
|
2001-09-25 21:38:05 +00:00
|
|
|
nq_wgl_LDFLAGS= $(common_ldflags)
|
2002-01-19 05:45:48 +00:00
|
|
|
nq_wgl_DEPENDENCIES= $(nq_wgl_libs)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 05:17:09 +00:00
|
|
|
# Dedicated Server
|
2001-10-07 12:45:47 +00:00
|
|
|
if SYSTYPE_WIN32
|
2001-10-09 15:44:34 +00:00
|
|
|
ded_sources= sys_wind.c sv_ded.c sv_model.c
|
2001-10-07 12:45:47 +00:00
|
|
|
else
|
2001-10-09 15:44:34 +00:00
|
|
|
ded_sources= sys_unixd.c sv_ded.c sv_model.c
|
2001-10-07 12:45:47 +00:00
|
|
|
endif
|
2002-10-11 17:43:51 +00:00
|
|
|
EXTRA_DIST=sys_wind.c sys_unixd.c sv_ded.c sv_model.c
|
|
|
|
|
2001-10-03 21:25:43 +00:00
|
|
|
nq_server_LDFLAGS= $(common_ldflags)
|
2002-08-01 19:49:10 +00:00
|
|
|
nq_server_SOURCES= $(ded_sources)
|
|
|
|
nq_server_LDADD= $(server_libs) $(server_LIBS)
|
|
|
|
nq_server_DEPENDENCIES= $(server_libs) $(server_LIB_DEPS)
|
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-04-11 03:09:24 +00:00
|
|
|
|
|
|
|
# Kill the temp files, hopefully.
|
|
|
|
CLEANFILES = *.i *.s $(YACCLEX_CLEANFILES)
|