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
|
2012-02-17 16:10:15 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/qw/include @LIBCURL_CFLAGS@
|
2001-09-30 23:24:53 +00:00
|
|
|
SDL_LIBS = @SDL_LIBS@
|
2011-12-10 11:33:20 +00:00
|
|
|
AM_CFLAGS= @PTHREAD_CFLAGS@
|
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
|
|
|
|
2012-02-14 13:19:17 +00:00
|
|
|
EXTRA_PROGRAMS= \
|
|
|
|
qw-client-fbdev qw-client-sdl qw-client-svga qw-client-wgl qw-client-x11 \
|
|
|
|
qw-server qw-master
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-11-28 23:51:29 +00:00
|
|
|
noinst_LIBRARIES= @qw_libs@
|
|
|
|
EXTRA_LIBRARIES=libqw_client.a libqw_common.a libqw_sdl.a libqw_server.a
|
2001-10-03 17:50:36 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2005-06-19 06:29:50 +00:00
|
|
|
libqw_common_a_SOURCES=\
|
2011-09-11 05:55:13 +00:00
|
|
|
game.c map_cfg.c pmove.c pmovetst.c net_packetlog.c
|
2002-12-20 23:40:47 +00:00
|
|
|
libqw_sdl_a_SOURCES=cl_sys_sdl.c
|
|
|
|
libqw_sdl_a_CFLAGS=$(SDL_CFLAGS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2011-12-10 11:33:20 +00:00
|
|
|
common_ldflags= -export-dynamic @PTHREAD_LDFLAGS@
|
2001-05-30 18:35:19 +00:00
|
|
|
|
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
|
|
|
|
|
2002-10-11 17:43:51 +00:00
|
|
|
EXTRA_DIST=sv_sys_win.c sv_sys_unix.c
|
|
|
|
|
2002-12-20 23:40:47 +00:00
|
|
|
libqw_server_a_SOURCES= \
|
2003-11-21 05:01:50 +00:00
|
|
|
crudefile.c sv_ccmds.c sv_demo.c sv_ents.c sv_gib.c sv_init.c sv_main.c \
|
2007-04-06 13:59:05 +00:00
|
|
|
sv_move.c sv_phys.c sv_pr_cmds.c sv_pr_cpqw.c sv_pr_qwe.c sv_progs.c \
|
2012-02-07 07:04:19 +00:00
|
|
|
sv_qtv.c sv_recorder.c sv_sbar.c sv_send.c sv_user.c world.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2004-02-19 01:29:08 +00:00
|
|
|
qw_server_LIBS= \
|
2012-02-12 02:37:25 +00:00
|
|
|
@server_static_plugin_libs@ \
|
2004-02-21 05:09:02 +00:00
|
|
|
$(top_builddir)/libs/qw/libqw.a \
|
2003-02-11 22:48:57 +00:00
|
|
|
$(top_builddir)/libs/net/libnet_chan.la \
|
2001-10-03 19:52:03 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
2012-02-05 05:25:22 +00:00
|
|
|
$(top_builddir)/libs/image/libQFimage.la \
|
2003-09-11 06:03:13 +00:00
|
|
|
$(top_builddir)/libs/gib/libQFgib.la \
|
2012-02-13 06:05:31 +00:00
|
|
|
$(top_builddir)/libs/ruamoko/libQFruamoko.la \
|
|
|
|
$(top_builddir)/libs/console/libQFconsole.la \
|
2003-09-11 06:03:13 +00:00
|
|
|
$(top_builddir)/libs/util/libQFutil.la
|
2001-05-17 16:52:47 +00:00
|
|
|
|
2012-02-07 07:04:19 +00:00
|
|
|
qw_server_deps=libqw_server.a libqw_common.a $(qw_server_LIBS)
|
|
|
|
qw_server_SOURCES= $(syssv_SRC)
|
|
|
|
qw_server_LDADD= $(qw_server_deps) $(NET_LIBS) $(DL_LIBS) $(CURSES_LIBS)
|
|
|
|
qw_server_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_server_DEPENDENCIES= $(qw_server_deps)
|
|
|
|
|
|
|
|
qw_master_deps=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
qw_master_SOURCES= master.c
|
|
|
|
qw_master_LDADD= $(qw_master_deps) $(NET_LIBS)
|
2012-02-07 11:18:23 +00:00
|
|
|
qw_master_DEPENDENCIES= $(qw_master_deps)
|
2012-02-07 07:04:19 +00:00
|
|
|
qw_master_LDFLAGS= $(common_ldflags)
|
2001-09-18 03:24:26 +00:00
|
|
|
|
2002-01-18 22:35:46 +00:00
|
|
|
cl_plugin_LIBS= \
|
2012-02-13 06:05:31 +00:00
|
|
|
@client_static_plugin_libs@
|
2002-01-18 22:35:46 +00:00
|
|
|
|
2004-02-19 01:29:08 +00:00
|
|
|
qw_client_LIBS= \
|
2004-02-21 05:09:02 +00:00
|
|
|
$(top_builddir)/libs/qw/libqw.a \
|
2003-02-11 22:48:57 +00:00
|
|
|
$(top_builddir)/libs/net/libnet_chan.la \
|
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-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 \
|
2003-08-15 16:19:10 +00:00
|
|
|
$(top_builddir)/libs/image/libQFimage.la \
|
2012-02-13 06:05:31 +00:00
|
|
|
$(top_builddir)/libs/gib/libQFgib.la \
|
|
|
|
$(top_builddir)/libs/ruamoko/libQFruamoko.la \
|
|
|
|
$(top_builddir)/libs/util/libQFutil.la
|
2001-05-17 16:52:47 +00:00
|
|
|
|
2010-11-28 23:51:29 +00:00
|
|
|
client_LIBS= $(qw_client_LIBS)
|
2002-12-20 23:40:47 +00:00
|
|
|
client_libs= libqw_client.a libqw_common.a
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-12-20 23:40:47 +00:00
|
|
|
libqw_client_a_SOURCES= \
|
2011-06-19 12:34:48 +00:00
|
|
|
cl_cam.c cl_chat.c cl_cmd.c cl_cvar.c cl_demo.c cl_entparse.c \
|
|
|
|
cl_ents.c cl_http.c cl_input.c cl_main.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 \
|
2012-01-23 07:16:30 +00:00
|
|
|
locs.c sbar.c teamplay.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Software-rendering clients
|
|
|
|
|
|
|
|
# ... Linux FBDev
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_fbdev_libs= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
2012-02-14 13:19:17 +00:00
|
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer.la \
|
2012-02-23 01:10:36 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFfbdev.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-01 19:49:10 +00:00
|
|
|
qw_client_fbdev_SOURCES= cl_sys_unix.c
|
2012-02-05 15:05:22 +00:00
|
|
|
qw_client_fbdev_LDADD= $(qw_client_fbdev_libs) $(NET_LIBS) $(LIBCURL_LIBS)
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_fbdev_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_fbdev_DEPENDENCIES= $(qw_client_fbdev_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= \
|
2002-12-20 23:40:47 +00:00
|
|
|
libqw_sdl.a \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
2012-02-14 13:19:17 +00:00
|
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer.la \
|
2012-02-23 01:10:36 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
2001-09-25 23:32:11 +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
|
|
|
qw_client_sdl_SOURCES=sdl_link.c
|
2012-02-05 15:05:22 +00:00
|
|
|
qw_client_sdl_LDADD= libqw_sdl.a $(qw_client_sdl_libs) $(SDL_LIBS) $(NET_LIBS) $(LIBCURL_LIBS)
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_sdl_LDFLAGS= $(common_ldflags)
|
2002-12-20 23:40:47 +00:00
|
|
|
qw_client_sdl_DEPENDENCIES= libqw_sdl.a $(qw_client_sdl_libs)
|
2001-09-25 23:32: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= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
2012-02-14 13:19:17 +00:00
|
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer.la \
|
2012-02-23 01:10:36 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFsvga.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-01 19:49:10 +00:00
|
|
|
qw_client_svga_SOURCES= cl_sys_unix.c
|
2012-02-05 15:05:22 +00:00
|
|
|
qw_client_svga_LDADD= $(qw_client_svga_libs) $(SVGA_LIBS) $(NET_LIBS) $(LIBCURL_LIBS)
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_svga_LDFLAGS= $(common_ldflags)
|
2002-08-08 01:47:32 +00:00
|
|
|
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= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(cl_plugin_LIBS) \
|
2012-02-14 13:19:17 +00:00
|
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer.la \
|
2012-02-23 01:10:36 +00:00
|
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
2001-09-25 23:32:11 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFx11.la \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(client_LIBS)
|
2002-08-01 19:49:10 +00:00
|
|
|
qw_client_x11_SOURCES= cl_sys_unix.c
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_x11_LDADD= $(qw_client_x11_libs) \
|
2010-12-24 06:42:25 +00:00
|
|
|
$(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
|
2012-02-05 15:05:22 +00:00
|
|
|
$(X_EXTRA_LIBS) $(X_SHM_LIB) $(NET_LIBS) $(LIBCURL_LIBS)
|
2002-01-19 05:45:48 +00:00
|
|
|
qw_client_x11_LDFLAGS= $(common_ldflags)
|
|
|
|
qw_client_x11_DEPENDENCIES= $(qw_client_x11_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= \
|
2002-08-01 19:49:10 +00:00
|
|
|
$(client_libs) \
|
2002-01-19 05:45:48 +00:00
|
|
|
$(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)
|
2002-08-01 19:49:10 +00:00
|
|
|
qw_client_wgl_SOURCES= cl_sys_win.c
|
2012-02-05 15:05:22 +00:00
|
|
|
qw_client_wgl_LDADD= $(qw_client_wgl_libs) -lgdi32 -lwinmm $(NET_LIBS) $(LIBCURL_LIBS)
|
2002-01-19 05:45:48 +00:00
|
|
|
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'
|
|
|
|
|
|
|
|
# Kill the temp files, hopefully.
|
|
|
|
CLEANFILES = *.i *.s $(YACCLEX_CLEANFILES)
|