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 05:17:09 +00:00
|
|
|
|
2001-03-29 09:07:44 +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-02-19 21:15:25 +00:00
|
|
|
|
2001-02-20 03:10:06 +00:00
|
|
|
bin_PROGRAMS = @NQ_TARGETS@
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-03-29 17:31:15 +00:00
|
|
|
EXTRA_PROGRAMS= nq-3dfx nq-fbdev nq-glx nq-mgl nq-sdl \
|
|
|
|
nq-sgl nq-svga nq-wgl nq-x11 nq-server
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-06-14 19:52:38 +00:00
|
|
|
if ASM_ARCH
|
|
|
|
ASM = libasm.la
|
|
|
|
else
|
|
|
|
ASM =
|
|
|
|
endif
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES= libqfnet.la $(ASM)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-06-14 19:52:38 +00:00
|
|
|
libasm_la_SOURCES = sys_ia32.S worlda.S
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-06-14 19:52:38 +00:00
|
|
|
common_SOURCES= game.c host_skin.c skin.c world.c com.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
|
|
|
# ... Networking
|
2001-06-14 19:52:38 +00:00
|
|
|
libqfnet_la_SOURCES= net_bsd.c net_dgrm.c net_loop.c \
|
2001-02-19 21:15:25 +00:00
|
|
|
net_main.c net_udp.c net_vcr.c
|
|
|
|
|
2001-06-14 19:52:38 +00:00
|
|
|
EXTRA_libqfnet_la_SOURCES= net_dos.c net_bw.c net_ipx.c net_mp.c net_ser.c \
|
2001-02-19 21:15:25 +00:00
|
|
|
net_win.c net_wins.c net_wipx.c
|
|
|
|
|
2001-05-17 16:52:47 +00:00
|
|
|
qf_client_LIBS= $(top_builddir)/libs/video/targets/libQFjs.la \
|
2001-05-20 23:30:16 +00:00
|
|
|
$(top_builddir)/libs/gamecode/libQFgamecode.la \
|
|
|
|
$(top_builddir)/libs/gib/libQFgib.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
|
|
|
|
2001-08-15 06:12:38 +00:00
|
|
|
client_LIBS= libqfnet.la $(ASM) $(qf_client_LIBS) $(NET_LIBS)
|
2001-06-16 22:33:56 +00:00
|
|
|
client_LIB_DEPS= libqfnet.la $(ASM) $(qf_client_LIBS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-23 06:33:23 +00:00
|
|
|
client_SOURCES= cl_cam.c cl_cmd.c cl_demo.c cl_input.c cl_main.c cl_screen.c \
|
2001-08-10 00:28:57 +00:00
|
|
|
cl_parse.c cl_tent.c cl_view.c \
|
2001-08-16 09:19:36 +00:00
|
|
|
console.c locs.c sbar.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-20 23:30:16 +00:00
|
|
|
server_SOURCES= host.c host_cmd.c pr_cmds.c sv_cvar.c sv_main.c \
|
|
|
|
sv_move.c sv_phys.c sv_progs.c sv_user.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-15 20:55:22 +00:00
|
|
|
combined_SOURCES= $(common_SOURCES) $(client_SOURCES) $(server_SOURCES)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Software-rendering targets
|
|
|
|
|
2001-03-29 17:31:15 +00:00
|
|
|
# ... Linux FBDev
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_fbdev_SOURCES= $(combined_SOURCES) sys_unix.c
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_fbdev_LDADD= ../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFfbdev.la $(client_LIBS)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_fbdev_LDFLAGS= $(common_ldflags)
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_fbdev_DEPENDENCIES=../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFfbdev.la $(client_LIB_DEPS)
|
2001-03-29 17:31:15 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
# ... SciTech MGL
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_mgl_SOURCES= $(combined_SOURCES) sys_win.c
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_mgl_LDADD= ../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFmgl.la $(client_LIBS) $(MGL_LIBS)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_mgl_LDFLAGS= $(common_ldflags)
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_mgl_DEPENDENCIES=../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFmgl.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... Sam Lantinga's Simple DirectMedia Layer, version 1.0 and higher
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_sdl_SOURCES= $(combined_SOURCES) sys_sdl.c
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_sdl_LDADD= ../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFsdl.la $(client_LIBS) $(SDL_LIBS)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_sgl_LDFLAGS= $(common_ldflags)
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_sdl_DEPENDENCIES=../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFsdl.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... Linux SVGAlib
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_svga_SOURCES= $(combined_SOURCES) sys_unix.c
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_svga_LDADD= ../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFsvga.la $(client_LIBS) $(SVGA_LIBS)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_svga_LDFLAGS= $(common_ldflags)
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_svga_DEPENDENCIES=../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFsvga.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... X11
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_x11_SOURCES= $(combined_SOURCES) sys_unix.c
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_x11_LDADD= ../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFx11.la $(client_LIBS) $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) $(X_SHM_LIB)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_x11_LDFLAGS= $(common_ldflags)
|
2001-07-26 20:55:42 +00:00
|
|
|
nq_x11_DEPENDENCIES=../../libs/video/renderer/.libs/libQFrenderer_sw.a ../../libs/models/libQFmodels_sw.la ../../libs/video/targets/libQFx11.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
# OpenGL-using targets
|
|
|
|
|
|
|
|
# ... 3Dfx Voodoo 1 and 2 SVGAlib-based console GL
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_3dfx_SOURCES= $(combined_SOURCES) sys_unix.c
|
2001-06-29 02:10:52 +00:00
|
|
|
nq_3dfx_LDADD= ../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFtdfx.la $(client_LIBS) $(GLIDE_LIBS) $(SVGA_LIBS) $(DL_LIBS)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_3dfx_LDFLAGS= $(common_ldflags)
|
2001-05-24 19:22:35 +00:00
|
|
|
nq_3dfx_DEPENDENCIES=../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFtdfx.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... OpenGL in X Window
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_glx_SOURCES= $(combined_SOURCES) sys_unix.c
|
2001-06-24 09:25:55 +00:00
|
|
|
nq_glx_LDADD= ../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFglx.la $(client_LIBS) $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 -lXext $(X_EXTRA_LIBS) $(DL_LIBS)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_glx_LDFLAGS= $(common_ldflags)
|
2001-05-24 19:22:35 +00:00
|
|
|
nq_glx_DEPENDENCIES=../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFglx.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 05:17:09 +00:00
|
|
|
# ... Simple Directmedia Layer, version 1.1 and higher, in GL mode
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_sgl_SOURCES= $(combined_SOURCES) sys_sdl.c
|
2001-06-24 09:25:55 +00:00
|
|
|
nq_sgl_LDADD= ../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFsgl.la $(client_LIBS) $(X_LIBS) $(SDL_LIBS) $(DL_LIBS)
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_sgl_LDFLAGS= $(common_ldflags)
|
2001-05-24 19:22:35 +00:00
|
|
|
nq_sgl_DEPENDENCIES=../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFsgl.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 05:17:09 +00:00
|
|
|
# ... SGI/Microsoft WGL (Windows OpenGL)
|
2001-08-15 20:55:22 +00:00
|
|
|
nq_wgl_SOURCES= $(combined_SOURCES) conproc.c sys_win.c
|
2001-06-24 09:25:55 +00:00
|
|
|
nq_wgl_LDADD= ../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFwgl.la $(client_LIBS) -lgdi32 -lcomctl32 -lwinmm
|
2001-05-30 18:35:19 +00:00
|
|
|
nq_wgl_LDFLAGS= $(common_ldflags)
|
2001-05-24 19:22:35 +00:00
|
|
|
nq_wgl_DEPENDENCIES=../../libs/video/renderer/libQFrenderer_gl.la ../../libs/models/libQFmodels_gl.la ../../libs/video/targets/libQFwgl.la $(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 05:17:09 +00:00
|
|
|
# Dedicated Server
|
|
|
|
ded_SOURCES= sys_unixd.c sv_ded.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_server_SOURCES= $(common_SOURCES) $(server_SOURCES) $(ded_SOURCES)
|
2001-06-16 22:33:56 +00:00
|
|
|
nq_server_LDADD= libqfnet.la $(ASM)
|
|
|
|
nq_server_DEPENDENCIES= libqfnet.la $(ASM)
|
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-06-08 02:47:30 +00:00
|
|
|
EXTRA_DIST= sys_win.c sys_unix.c #nq.dsp
|
2001-04-11 03:09:24 +00:00
|
|
|
|
|
|
|
# Kill the temp files, hopefully.
|
|
|
|
CLEANFILES = *.i *.s $(YACCLEX_CLEANFILES)
|
2001-08-15 20:55:22 +00:00
|
|
|
|
|
|
|
sys_sdl.o: sys_sdl.c
|
|
|
|
@echo '$(COMPILE) $(SDL_CFLAGS) -c $<'; \
|
|
|
|
$(COMPILE) $(SDL_CFLAGS) -Wp,-MD,.deps/$(*F).pp -c $<
|
|
|
|
@-cp .deps/$(*F).pp .deps/$(*F).P; \
|
|
|
|
tr ' ' '\012' < .deps/$(*F).pp \
|
|
|
|
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
|
|
|
>> .deps/$(*F).P; \
|
|
|
|
rm .deps/$(*F).pp
|