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-02-22 00:24:45 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/nq/include $(MGL_CFLAGS) $(SDL_CFLAGS) $(SVGA_CFLAGS) $(X_CFLAGS) $(GLX_CFLAGS) $(TDFXGL_CFLAGS)
|
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-04-11 16:19:08 +00:00
|
|
|
noinst_LIBRARIES= libqfnet.a
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#if ASM_ARCH
|
2001-03-05 02:06:05 +00:00
|
|
|
math_ASM= cl_math.S
|
2001-02-19 21:15:25 +00:00
|
|
|
soft_ASM= d_draw.S d_draw16.S d_parta.S d_polysa.S d_scana.S d_spr8.S \
|
2001-04-04 21:47:21 +00:00
|
|
|
d_varsa.S sw_raclipa.S sw_raliasa.S sw_rdrawa.S sw_redgea.S sw_rvarsa.S \
|
2001-02-19 21:15:25 +00:00
|
|
|
surf16.S surf8.S
|
|
|
|
common_ASM= sys_ia32.S worlda.S $(math_ASM)
|
|
|
|
#endif
|
|
|
|
|
2001-03-05 02:06:05 +00:00
|
|
|
common_SOURCES= game.c wad.c world.c \
|
2001-02-19 21:15:25 +00:00
|
|
|
model.c model_alias.c model_brush.c model_sprite.c \
|
2001-03-29 21:16:16 +00:00
|
|
|
com.c \
|
2001-02-22 08:12:13 +00:00
|
|
|
$(common_ASM)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... System type
|
|
|
|
if SYSTYPE_WIN32
|
2001-04-11 05:23:12 +00:00
|
|
|
qfsys_SRC= sys_win.c fnmatch.c
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-04-11 05:23:12 +00:00
|
|
|
qfsys_SRC= sys_unix.c
|
2001-02-19 21:15:25 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
# ... Networking
|
2001-02-23 18:31:48 +00:00
|
|
|
libqfnet_a_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-04-09 21:15:09 +00:00
|
|
|
EXTRA_libqfnet_a_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-04-09 21:15:09 +00:00
|
|
|
client_LIBS= $(top_builddir)/libs/gamecode/libQFgamecode.la \
|
|
|
|
$(top_builddir)/libs/util/libQFutil.la \
|
|
|
|
$(top_builddir)/libs/audio/cd/libQFcd.la \
|
2001-04-10 09:40:09 +00:00
|
|
|
$(top_builddir)/libs/audio/targets/libQFsound.la \
|
2001-04-11 07:57:08 +00:00
|
|
|
$(top_builddir)/libs/video/targets/libQFjs.la \
|
2001-04-11 16:47:08 +00:00
|
|
|
-L. -lqfnet $(SOUND_LIBS) $(NET_LIBS)
|
2001-04-11 21:24:50 +00:00
|
|
|
client_LIB_DEPS= libqfnet.a
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-22 08:12:13 +00:00
|
|
|
client_SOURCES= cl_cam.c cl_cmd.c cl_demo.c cl_input.c cl_main.c cl_parse.c \
|
2001-04-04 21:53:09 +00:00
|
|
|
cl_tent.c console.c keys.c sbar.c r_part.c r_view.c \
|
2001-02-19 21:15:25 +00:00
|
|
|
nonintel.c gib.c gib_instructions.c gib_vars.c \
|
2001-04-15 05:36:56 +00:00
|
|
|
gib_interpret.c gib_modules.c gib_parse.c gib_stack.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
server_SOURCES= host.c host_cmd.c \
|
2001-03-03 08:31:58 +00:00
|
|
|
pr_cmds.c \
|
2001-02-26 20:52:14 +00:00
|
|
|
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-04-11 05:23:12 +00:00
|
|
|
combined_SOURCES= $(common_SOURCES) $(client_SOURCES) $(server_SOURCES) $(qfsys_SRC)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# Software-rendering targets
|
|
|
|
#
|
|
|
|
# ... Common stuff
|
|
|
|
soft_SOURCES= d_edge.c d_fill.c d_init.c d_modech.c d_part.c d_polyse.c \
|
|
|
|
d_scan.c d_sky.c d_sprite.c d_surf.c d_vars.c d_zpoint.c \
|
2001-04-04 21:47:21 +00:00
|
|
|
draw.c sw_raclip.c sw_ralias.c sw_rbsp.c sw_rdraw.c sw_redge.c sw_refrag.c \
|
|
|
|
sw_rlight.c sw_rmain.c sw_rmisc.c sw_part.c sw_rsky.c sw_rsprite.c \
|
|
|
|
sw_rsurf.c sw_rvars.c screen.c sw_model_alias.c sw_model_brush.c \
|
2001-02-19 21:15:25 +00:00
|
|
|
sw_model_sprite.c sw_view.c $(soft_ASM)
|
|
|
|
|
2001-03-29 17:31:15 +00:00
|
|
|
# ... Linux FBDev
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_fbdev_SOURCES= $(combined_SOURCES) $(soft_SOURCES)
|
|
|
|
nq_fbdev_LDADD= $(client_LIBS) ../../libs/video/targets/libQFfbdev.la
|
2001-03-29 17:31:15 +00:00
|
|
|
nq_fbdev_DEPENDENCIES= $(client_LIB_DEPS)
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
# ... SciTech MGL
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_mgl_SOURCES= $(combined_SOURCES) $(soft_SOURCES)
|
|
|
|
nq_mgl_LDADD= $(client_LIBS) $(MGL_LIBS) ../../libs/video/targets/libQFmgl.la
|
2001-02-22 08:12:13 +00:00
|
|
|
nq_mgl_DEPENDENCIES=$(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... Sam Lantinga's Simple DirectMedia Layer, version 1.0 and higher
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_sdl_SOURCES= $(combined_SOURCES) $(soft_SOURCES)
|
|
|
|
nq_sdl_LDADD= $(client_LIBS) $(SDL_LIBS) ../../libs/video/targets/libQFsdl.la
|
2001-02-22 08:12:13 +00:00
|
|
|
nq_sdl_DEPENDENCIES=$(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... Linux SVGAlib
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_svga_SOURCES= $(combined_SOURCES) $(soft_SOURCES)
|
|
|
|
nq_svga_LDADD= $(client_LIBS) $(SVGA_LIBS) ../../libs/video/targets/libQFsvga.la
|
2001-02-22 08:12:13 +00:00
|
|
|
nq_svga_DEPENDENCIES=$(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... X11
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_x11_SOURCES= $(combined_SOURCES) $(soft_SOURCES)
|
|
|
|
nq_x11_LDADD= $(client_LIBS) $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) $(X_SHM_LIB) ../../libs/video/targets/libQFx11.la
|
2001-02-22 08:12:13 +00:00
|
|
|
nq_x11_DEPENDENCIES=$(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
# OpenGL-using targets
|
|
|
|
# ... Common stuff
|
|
|
|
ogl_SOURCES= gl_draw.c gl_mesh.c gl_part.c gl_refrag.c gl_rlight.c \
|
|
|
|
gl_rmain.c gl_rmisc.c gl_rsurf.c gl_screen.c gl_view.c \
|
|
|
|
gl_warp.c gl_model_alias.c gl_model_brush.c gl_model_fullbright.c \
|
|
|
|
gl_model_sprite.c
|
|
|
|
|
|
|
|
# ... 3Dfx Voodoo 1 and 2 SVGAlib-based console GL
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_3dfx_SOURCES= $(combined_SOURCES) $(ogl_SOURCES)
|
|
|
|
nq_3dfx_LDADD= $(client_LIBS) $(TDFXGL_LIBS) $(SVGA_LIBS) $(DL_LIBS) ../../libs/video/targets/libQFtdfx.la
|
2001-02-22 08:12:13 +00:00
|
|
|
nq_3dfx_DEPENDENCIES=$(client_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
# ... OpenGL in X Window
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_glx_SOURCES= $(combined_SOURCES) $(ogl_SOURCES)
|
|
|
|
nq_glx_LDADD= $(client_LIBS) $(GLX_LIBS) $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) $(DL_LIBS) ../../libs/video/targets/libQFglx.la
|
|
|
|
nq_glx_DEPENDENCIES= $(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
|
|
|
|
nq_sgl_SOURCES= $(combined_SOURCES) $(ogl_SOURCES)
|
|
|
|
nq_sgl_LDADD= $(client_LIBS) $(X_LIBS) $(SDL_LIBS) $(GLX_LIBS) $(DL_LIBS) ../../libs/video/targets/libQFsgl.la
|
|
|
|
nq_sgl_DEPENDENCIES= $(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-04-11 21:55:27 +00:00
|
|
|
wgl_SOURCES= vid_wgl.c conproc.c
|
2001-04-15 05:17:09 +00:00
|
|
|
nq_wgl_SOURCES= $(combined_SOURCES) $(ogl_SOURCES)
|
|
|
|
nq_wgl_LDADD= $(client_LIBS) $(GLX_LIBS) ../../libs/video/targets/libQFwgl.la -lgdi32 -lcomctl32
|
|
|
|
nq_wgl_DEPENDENCIES= $(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)
|
|
|
|
nq_server_LDADD= libqfnet.a
|
|
|
|
nq_server_DEPENDENCIES= libqfnet.a
|
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 05:23:12 +00:00
|
|
|
EXTRA_DIST= #nq.dsp dirent.c fnmatch.c sys_unix.c sys_win.c
|
2001-04-11 03:09:24 +00:00
|
|
|
|
|
|
|
# Kill the temp files, hopefully.
|
|
|
|
CLEANFILES = *.i *.s $(YACCLEX_CLEANFILES)
|