mirror of
https://git.code.sf.net/p/quake/nuq
synced 2024-11-24 21:12:07 +00:00
even if this was a pool, we don't want any wee in it :)
This commit is contained in:
parent
935dd92fd4
commit
0d49ca5edb
1 changed files with 0 additions and 106 deletions
106
source/wee
106
source/wee
|
@ -1,106 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
INCLUDES= -I$(top_srcdir)/include $(SDL_CFLAGS) $(GLX_CFLAGS) $(TDFXGL_CFLAGS)
|
||||
|
||||
bin_PROGRAMS = @TARGETS@
|
||||
|
||||
EXTRA_PROGRAMS= uquake-sdl uquake-3dfx uquake-glx uquake-wgl
|
||||
|
||||
noinst_LIBRARIES = libqfsys_cl.a libqfsys_sv.a libqfsnd.a libqfcd.a
|
||||
|
||||
if SYSTYPE_WIN32
|
||||
libqfsys_cl_a_SOURCES = sys_win.c cl_sys_win.c fnmatch.c
|
||||
libqfsys_sv_a_SOURCES = sys_win.c sv_sys_win.c fnmatch.c
|
||||
else
|
||||
libqfsys_cl_a_SOURCES = sys_unix.c cl_sys_unix.c
|
||||
libqfsys_sv_a_SOURCES = sys_unix.c sv_sys_unix.c
|
||||
endif
|
||||
|
||||
if ASM_ARCH
|
||||
MATH_ASM = math.S
|
||||
WORLDA_ASM = worlda.S
|
||||
CL_ASM = snd_mixa.S cl_math.S sys_x86.S
|
||||
SOFT_ASM = d_draw.S d_draw16.S d_parta.S d_polysa.S d_scana.S \
|
||||
d_spr8.S d_varsa.S r_aclipa.S r_aliasa.S r_drawa.S r_edgea.S \
|
||||
r_varsa.S surf16.S surf8.S
|
||||
endif
|
||||
|
||||
EXTRA_libqfsys_cl_a_SOURCES = cl_sys_unix.c cl_sys_win.c sys_win.c sys_unix.c fnmatch.c dirent.c
|
||||
EXTRA_libqfsys_sv_a_SOURCES = sv_sys_unix.c sv_sys_win.c sys_win.c sys_unix.c fnmatch.c dirent.c
|
||||
|
||||
if SNDTYPE_ALSA
|
||||
libqfsnd_a_SOURCES = snd_dma.c snd_mem.c snd_mix.c snd_alsa.c
|
||||
endif
|
||||
if SNDTYPE_MME
|
||||
libqfsnd_a_SOURCES = snd_dma.c snd_mem.c snd_mix.c snd_mme.c
|
||||
endif
|
||||
if SNDTYPE_OSS
|
||||
libqfsnd_a_SOURCES = snd_dma.c snd_mem.c snd_mix.c snd_oss.c
|
||||
endif
|
||||
if SNDTYPE_SUN
|
||||
libqfsnd_a_SOURCES = snd_dma.c snd_mem.c snd_mix.c snd_sun.c
|
||||
endif
|
||||
if SNDTYPE_WIN32
|
||||
libqfsnd_a_SOURCES = snd_dma.c snd_mem.c snd_mix.c snd_win.c
|
||||
endif
|
||||
if SNDTYPE_NULL
|
||||
libqfsnd_a_SOURCES = snd_null.c
|
||||
endif
|
||||
EXTRA_libqfsnd_a_SOURCES = snd_dma.c snd_mem.c snd_mix.c snd_alsa.c snd_oss.c snd_sun.c snd_win.c snd_null.c
|
||||
|
||||
if CDTYPE_WIN32
|
||||
libqfcd_a_SOURCES = cd_win.c
|
||||
endif
|
||||
if CDTYPE_LINUX
|
||||
libqfcd_a_SOURCES = cd_linux.c
|
||||
endif
|
||||
if CDTYPE_NULL
|
||||
libqfcd_a_SOURCES = cd_null.c
|
||||
endif
|
||||
EXTRA_libqfcd_a_SOURCES = cd_audio.c cd_win.c cd_linux.c cd_null.c
|
||||
|
||||
common_SOURCES= net_chan.c net_com.c net_udp.c pmove.c pmovetst.c zone.c \
|
||||
mdfour.c mathlib.c cvar.c crc.c cmd.c \
|
||||
qargs.c qendian.c quakefs.c quakeio.c msg.c sizebuf.c info.c \
|
||||
checksum.c link.c buildnum.c va.c com.c $(MATH_ASM)
|
||||
#server_SOURCES= pr_cmds.c pr_edict.c pr_exec.c sv_init.c sv_main.c sv_misc.c \
|
||||
# sv_model.c sv_nchan.c sv_ents.c sv_send.c sv_move.c sv_phys.c \
|
||||
# sv_user.c sv_ccmds.c world.c sv_cvar.c model.c $(WORLDA_ASM)
|
||||
client_SOURCES= 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_tent.c cl_cam.c \
|
||||
r_view.c wad.c \
|
||||
skin.c sbar.c nonintel.c menu.c keys.c console.c \
|
||||
cl_slist.c $(CL_ASM)
|
||||
soft_SOURCES= cl_model.c cl_trans.c 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 draw.c r_aclip.c r_alias.c r_bsp.c \
|
||||
r_draw.c r_edge.c r_efrag.c r_light.c r_main.c r_misc.c \
|
||||
r_part.c r_sky.c r_sprite.c r_surf.c r_vars.c sw_view.c \
|
||||
screen.c model.c $(SOFT_ASM)
|
||||
ogl_SOURCES= gl_draw.c gl_mesh.c gl_model.c gl_ngraph.c gl_part.c \
|
||||
gl_refrag.c gl_rlight.c gl_rmain.c gl_rmisc.c gl_rsurf.c \
|
||||
gl_screen.c gl_trans.c gl_view.c gl_warp.c
|
||||
|
||||
sdl_SOURCES= vid_sdl.c
|
||||
glx_SOURCES= vid_glx.c in_x11.c context_x11.c dga_check.c
|
||||
tdfx_SOURCES= vid_3dfxsvga.c in_svgalib.c
|
||||
wgl_SOURCES= vid_wgl.c
|
||||
|
||||
thirdspace_sdl_SOURCES= $(common_SOURCES) $(client_SOURCES) $(soft_SOURCES) $(sdl_SOURCES)
|
||||
thirdspace_3dfx_SOURCES=$(common_SOURCES) $(client_SOURCES) $(ogl_SOURCES) $(tdfx_SOURCES)
|
||||
thirdspace_glx_SOURCES= $(common_SOURCES) $(client_SOURCES) $(ogl_SOURCES) $(glx_SOURCES)
|
||||
thirdspace_wgl_SOURCES= $(common_SOURCES) $(client_SOURCES) $(ogl_SOURCES) $(wgl_SOURCES)
|
||||
|
||||
PROJECT_LIBS = -L. -lqfsys -lqfsnd -lqfcd $(SOUND_LIBS) $(NET_LIBS)
|
||||
|
||||
thirdspace_sdl_LDADD= $(SDL_LIBS) $(PROJECT_LIBS)
|
||||
thirdspace_3dfx_LDADD= $(TDFXGL_LIBS) $(SDL_LIBS) $(PROJECT_LIBS) $(DL_LIBS)
|
||||
thirdspace_glx_LDADD= $(GLX_LIBS) $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) $(PROJECT_LIBS) $(DL_LIBS)
|
||||
thirdspace_wgl_LDADD= $(PROJECT_LIBS)
|
||||
|
||||
thirdspace_sdl_DEPENDENCIES= libqfsys_cl.a libqfsnd.a libqfcd.a
|
||||
thirdspace_3dfx_DEPENDENCIES= libqfsys_cl.a libqfsnd.a libqfcd.a
|
||||
thirdspace_glx_DEPENDENCIES= libqfsys_cl.a libqfsnd.a libqfcd.a
|
||||
thirdspace_wgl_DEPENDENCIES= libqfsys_cl.a libqfsnd.a libqfcd.a
|
||||
|
||||
EXTRA_DIST = thirdspace.dsp
|
Loading…
Reference in a new issue