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$
|
|
|
|
#
|
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
|
|
|
#
|
|
|
|
# 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)/qw/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 = @QW_TARGETS@
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-22 00:24:45 +00:00
|
|
|
EXTRA_PROGRAMS= qw-client-3dfx qw-client-fbdev \
|
2001-02-21 22:22:32 +00:00
|
|
|
qw-client-glx qw-client-mgl qw-client-sdl \
|
|
|
|
qw-client-sgl qw-client-svga qw-client-wgl \
|
|
|
|
qw-client-x11 qw-server
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-11 07:57:08 +00:00
|
|
|
noinst_LIBRARIES= libqfnet.a
|
2001-04-10 21:43:57 +00:00
|
|
|
#libqfsys_cl.a libqfsys_sv.a
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if PACKETLOG
|
|
|
|
packetlogger = net_packetlog.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if ASM_ARCH
|
2001-03-05 02:06:05 +00:00
|
|
|
math_ASM = sys_x86.S
|
2001-02-19 21:15:25 +00:00
|
|
|
endif
|
2001-02-23 18:31:48 +00:00
|
|
|
common_SOURCES= buildnum.c com.c \
|
2001-03-30 00:30:38 +00:00
|
|
|
game.c model.c model_brush.c msg_ucmd.c \
|
2001-03-30 00:44:35 +00:00
|
|
|
pmove.c pmovetst.c \
|
2001-02-22 08:12:13 +00:00
|
|
|
$(math_ASM) $(packetlogger)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# ... Network type
|
|
|
|
#
|
|
|
|
if NETTYPE_IPV6
|
2001-02-23 18:31:48 +00:00
|
|
|
libqfnet_a_SOURCES= net_chan.c net_udp6.c
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-02-23 18:31:48 +00:00
|
|
|
libqfnet_a_SOURCES= net_chan.c net_udp.c
|
2001-02-19 21:15:25 +00:00
|
|
|
endif
|
2001-02-23 18:31:48 +00:00
|
|
|
EXTRA_libqfnet_a_SOURCES= net_chan.c net_udp.c net_udp6.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Server builds
|
|
|
|
#
|
|
|
|
# ... System type
|
|
|
|
#
|
|
|
|
if SYSTYPE_WIN32
|
2001-04-10 21:43:57 +00:00
|
|
|
syssv_SRC= fnmatch.c dirent.c 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
|
|
|
|
|
|
|
|
if ASM_ARCH
|
|
|
|
world_ASM= worlda.S
|
|
|
|
endif
|
|
|
|
|
2001-02-28 22:44:38 +00:00
|
|
|
server_SOURCES= sv_ccmds.c sv_cvar.c \
|
2001-02-19 21:15:25 +00:00
|
|
|
sv_ents.c sv_init.c sv_main.c sv_misc.c sv_model.c \
|
|
|
|
sv_move.c sv_nchan.c sv_phys.c sv_pr_cmds.c sv_progs.c sv_send.c \
|
2001-04-10 21:43:57 +00:00
|
|
|
sv_user.c world.c $(world_ASM) $(syssv_SRC)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_server_SOURCES= $(common_SOURCES) $(server_SOURCES)
|
2001-04-09 21:15:09 +00:00
|
|
|
qw_server_LDADD= $(top_builddir)/libs/util/libQFutil.la \
|
|
|
|
$(top_builddir)/libs/gamecode/libQFgamecode.la \
|
2001-04-10 21:43:57 +00:00
|
|
|
-L. -lqfnet $(NET_LIBS) $(DL_LIBS)
|
|
|
|
qw_server_DEPENDENCIES= libqfnet.a
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Client builds
|
|
|
|
#
|
|
|
|
# ... System type
|
|
|
|
#
|
|
|
|
if SYSTYPE_WIN32
|
2001-04-10 21:43:57 +00:00
|
|
|
syscl_SRC= cl_sys_win.c fnmatch.c dirent.c
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-04-10 21:43:57 +00:00
|
|
|
syscl_SRC= cl_sys_unix.c
|
2001-02-19 21:15:25 +00:00
|
|
|
endif
|
|
|
|
|
2001-04-09 21:15:09 +00:00
|
|
|
CLIENT_LIBS= $(top_builddir)/libs/util/libQFutil.la \
|
|
|
|
$(top_builddir)/libs/gamecode/libQFgamecode.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 \
|
|
|
|
-L. -lqfnet \
|
|
|
|
$(SOUND_LIBS) $(NET_LIBS)
|
|
|
|
CLIENT_LIB_DEPS= libqfnet.a
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if ASM_ARCH
|
2001-04-10 09:40:09 +00:00
|
|
|
client_ASM= cl_math.S
|
2001-02-19 21:15:25 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
client_SOURCES= cl_cam.c cl_cmd.c cl_cvar.c cl_demo.c cl_ents.c cl_input.c \
|
|
|
|
cl_main.c cl_misc.c cl_parse.c cl_pred.c cl_slist.c cl_tent.c \
|
2001-03-03 09:42:35 +00:00
|
|
|
console.c keys.c locs.c model_alias.c model_sprite.c nonintel.c \
|
2001-04-10 21:43:57 +00:00
|
|
|
pcx.c r_efrag.c r_view.c sbar.c skin.c teamplay.c tga.c wad.c vid.c $(client_ASM) $(syscl_SRC)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Software-rendering clients
|
|
|
|
#
|
|
|
|
# ... Common stuff
|
|
|
|
#
|
|
|
|
if ASM_ARCH
|
|
|
|
soft_ASM= d_draw.S d_draw16.S d_parta.S d_polysa.S d_scana.S d_spr8.S \
|
2001-04-04 21:22:23 +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
|
|
|
|
endif
|
|
|
|
|
|
|
|
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 \
|
2001-04-04 21:22:23 +00:00
|
|
|
d_vars.c d_zpoint.c draw.c sw_raclip.c sw_ralias.c sw_rbsp.c \
|
|
|
|
sw_rdraw.c sw_redge.c sw_rlight.c sw_rmain.c sw_rmisc.c \
|
|
|
|
sw_rpart.c sw_rsky.c sw_rsprite.c sw_rsurf.c sw_rvars.c sw_skin.c sw_view.c \
|
2001-02-19 21:15:25 +00:00
|
|
|
screen.c $(soft_ASM) sw_model_alias.c sw_model_brush.c \
|
|
|
|
sw_model_sprite.c
|
|
|
|
|
|
|
|
#
|
|
|
|
# ... Linux FBDev
|
|
|
|
#
|
|
|
|
YFLAGS = -d
|
|
|
|
fbdev_SOURCES= fbset.c fbset_modes_y.y fbset_modes_l.l vid_fbdev.c in_fbdev.c
|
|
|
|
YACCLEX_CLEANFILES= fbset_modes_y.c fbset_modes_y.h fbset_modes_y.tab.h fbset_modes_l.c
|
2001-02-21 22:26:47 +00:00
|
|
|
EXTRA_qw_client_fbdev_SOURCES=fbset_modes_y.h
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
fbset_modes_y.o: fbset_modes_y.c
|
2001-04-11 03:09:24 +00:00
|
|
|
$(COMPILE) -Wno-error -c fbset_modes_y.c
|
2001-02-19 21:15:25 +00:00
|
|
|
fbset_modes_l.o: fbset_modes_l.c
|
2001-04-11 03:09:24 +00:00
|
|
|
$(COMPILE) -Wno-error -c fbset_modes_l.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_fbdev_SOURCES= $(common_SOURCES) $(client_SOURCES) $(soft_SOURCES) $(fbdev_SOURCES)
|
|
|
|
qw_client_fbdev_LDADD= $(CLIENT_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_fbdev_DEPENDENCIES= $(CLIENT_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# ... SciTech MGL
|
|
|
|
#
|
2001-04-11 07:16:34 +00:00
|
|
|
mgl_SOURCES= in_win.c vid_common_sw.c vid_mgl.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_mgl_SOURCES= $(common_SOURCES) $(client_SOURCES) $(soft_SOURCES) $(mgl_SOURCES)
|
|
|
|
qw_client_mgl_LDADD= $(MGL_LIBS) $(CLIENT_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_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-11 07:16:34 +00:00
|
|
|
sdl_SOURCES= in_sdl.c vid_common_sw.c vid_sdl.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_sdl_SOURCES= $(common_SOURCES) $(client_SOURCES) $(soft_SOURCES) $(sdl_SOURCES)
|
|
|
|
qw_client_sdl_LDADD= $(SDL_LIBS) $(CLIENT_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_sdl_DEPENDENCIES= $(CLIENT_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# ... Linux SVGAlib
|
|
|
|
#
|
2001-04-11 07:16:34 +00:00
|
|
|
svga_SOURCES= d_copy.S in_svgalib.c vid_common_sw.c vid_svgalib.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_svga_SOURCES= $(common_SOURCES) $(client_SOURCES) $(soft_SOURCES) $(svga_SOURCES)
|
|
|
|
qw_client_svga_LDADD= $(SVGA_LIBS) $(CLIENT_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_svga_DEPENDENCIES= $(CLIENT_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# ... X11
|
|
|
|
#
|
2001-04-11 07:16:34 +00:00
|
|
|
x11_SOURCES= context_x11.c dga_check.c in_x11.c vid_common_sw.c vid_x11.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_x11_SOURCES= $(common_SOURCES) $(client_SOURCES) $(soft_SOURCES) $(x11_SOURCES)
|
|
|
|
qw_client_x11_LDADD= $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) $(X_SHM_LIB) $(CLIENT_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_x11_DEPENDENCIES= $(CLIENT_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# OpenGL-using clients
|
|
|
|
#
|
|
|
|
# ... Common stuff
|
|
|
|
#
|
2001-04-04 05:39:44 +00:00
|
|
|
ogl_SOURCES= noisetextures.c gl_textures.c gl_draw.c gl_dyn_fires.c \
|
2001-03-09 21:10:44 +00:00
|
|
|
gl_dyn_part.c gl_dyn_textures.c gl_mesh.c gl_ngraph.c \
|
2001-04-04 21:22:23 +00:00
|
|
|
gl_rlight.c gl_rmain.c gl_rmisc.c gl_rsurf.c \
|
2001-03-09 21:10:44 +00:00
|
|
|
gl_screen.c gl_skin.c gl_sky.c gl_sky_clip.c gl_view.c \
|
|
|
|
gl_warp.c gl_model_alias.c gl_model_brush.c \
|
|
|
|
gl_model_fullbright.c gl_model_sprite.c qfgl_ext.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# ... 3Dfx Voodoo 1 and 2 SVGAlib-based console GL
|
|
|
|
#
|
|
|
|
tdfx_SOURCES= vid_3dfxsvga.c vid_common_gl.c in_svgalib.c
|
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_3dfx_SOURCES= $(common_SOURCES) $(client_SOURCES) $(ogl_SOURCES) $(tdfx_SOURCES)
|
|
|
|
qw_client_3dfx_LDADD= $(TDFXGL_LIBS) $(SVGA_LIBS) $(CLIENT_LIBS) $(DL_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_3dfx_DEPENDENCIES= $(CLIENT_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# ... OpenGL in X Window
|
|
|
|
#
|
|
|
|
glx_SOURCES= vid_glx.c vid_common_gl.c in_x11.c context_x11.c dga_check.c
|
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_glx_SOURCES= $(common_SOURCES) $(client_SOURCES) $(ogl_SOURCES) $(glx_SOURCES)
|
|
|
|
qw_client_glx_LDADD= $(GLX_LIBS) $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) $(CLIENT_LIBS) $(DL_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_glx_DEPENDENCIES= $(CLIENT_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# ... Sam Lantinga's Simple DirectMedia Layer, version 1.1 and higher, in GL mode
|
|
|
|
#
|
|
|
|
sgl_SOURCES= vid_sgl.c vid_common_gl.c in_sdl.c
|
|
|
|
|
2001-02-21 22:26:47 +00:00
|
|
|
qw_client_sgl_SOURCES= $(common_SOURCES) $(client_SOURCES) $(ogl_SOURCES) $(sgl_SOURCES)
|
|
|
|
qw_client_sgl_LDADD= $(SDL_LIBS) $(X_LIBS) $(GLX_LIBS) $(CLIENT_LIBS) $(DL_LIBS)
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_sgl_DEPENDENCIES= $(CLIENT_LIB_DEPS)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# SGI/Microsoft WGL (Windows OpenGL)
|
|
|
|
#
|
|
|
|
wgl_SOURCES= vid_wgl.c
|
|
|
|
|
2001-04-11 05:10:42 +00:00
|
|
|
qw_client_wgl_SOURCES= $(common_SOURCES) $(client_SOURCES) $(ogl_SOURCES) $(wgl_SOURCES) in_win.c
|
|
|
|
qw_client_wgl_LDADD= $(CLIENT_LIBS) $(GLX_LIBS) -lgdi32
|
2001-02-22 08:12:13 +00:00
|
|
|
qw_client_wgl_DEPENDENCIES= $(CLIENT_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'
|
|
|
|
#
|
|
|
|
EXTRA_DIST= makefile.mgw makefile.win \
|
|
|
|
qf-server.mak qw_server.dsp \
|
|
|
|
qf-client-sdl.mak qf-client-win.mak qw_client.dsp \
|
|
|
|
qf-client-sgl.mak qf-client-wgl.mak qf-client-win.mak
|
|
|
|
|
|
|
|
# Kill the temp files, hopefully.
|
|
|
|
CLEANFILES = *.i *.s $(YACCLEX_CLEANFILES)
|