mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
trying to get bootstrap to work in cygwin
This commit is contained in:
parent
a439170dcf
commit
0efd28abcc
8 changed files with 44 additions and 38 deletions
|
@ -69,7 +69,7 @@ AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run
|
||||||
ac_save_CFLAGS="$CFLAGS"
|
ac_save_CFLAGS="$CFLAGS"
|
||||||
ac_save_LIBS="$LIBS"
|
ac_save_LIBS="$LIBS"
|
||||||
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
||||||
LIBS="$LIBS $SDL_LIBS"
|
LIBS="$SDL_LIBS"
|
||||||
dnl
|
dnl
|
||||||
dnl Now check if the installed SDL is sufficiently new. (Also sanity
|
dnl Now check if the installed SDL is sufficiently new. (Also sanity
|
||||||
dnl checks the results of sdl-config to some extent
|
dnl checks the results of sdl-config to some extent
|
||||||
|
|
|
@ -840,6 +840,7 @@ QF_maGiC_VALUE
|
||||||
CD_PLUGIN_TARGETS="$CD_PLUGIN_TARGETS libcd_sgi.la"
|
CD_PLUGIN_TARGETS="$CD_PLUGIN_TARGETS libcd_sgi.la"
|
||||||
SGI_CD_LIBS="-lcdaudio -lmediad -lds"
|
SGI_CD_LIBS="-lcdaudio -lmediad -lds"
|
||||||
)
|
)
|
||||||
|
AC_SUBST(SGI_CD_LIBS)
|
||||||
|
|
||||||
AC_EGREP_CPP([QF_maGiC_VALUE],
|
AC_EGREP_CPP([QF_maGiC_VALUE],
|
||||||
[
|
[
|
||||||
|
@ -1165,6 +1166,11 @@ if test "x$GCC" = "xyes"; then
|
||||||
# CFLAGS="$CFLAGS -Wall -pedantic"
|
# CFLAGS="$CFLAGS -Wall -pedantic"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AS="$CC"
|
||||||
|
ASFLAGS="$CFLAGS"
|
||||||
|
AC_SUBST(AS)
|
||||||
|
AC_SUBST(ASFLAGS)
|
||||||
|
|
||||||
dnl ==================================================================
|
dnl ==================================================================
|
||||||
dnl Make sure we link against a working zlib
|
dnl Make sure we link against a working zlib
|
||||||
dnl ==================================================================
|
dnl ==================================================================
|
||||||
|
|
|
@ -30,12 +30,12 @@ libsnd_output_sgi_la_SOURCES= snd_sgi.c
|
||||||
libsnd_output_sgi.la: $(libsnd_output_sgi_la_OBJECTS) $(libsnd_output_sgi_la_DEPENDENCIES)
|
libsnd_output_sgi.la: $(libsnd_output_sgi_la_OBJECTS) $(libsnd_output_sgi_la_DEPENDENCIES)
|
||||||
$(LINK) -rpath $(pluginpath) $(libsnd_output_sgi_la_LDFLAGS) $(libsnd_output_sgi_la_OBJECTS) $(libsnd_output_sgi_la_LIBADD) $(LIBS)
|
$(LINK) -rpath $(pluginpath) $(libsnd_output_sgi_la_LDFLAGS) $(libsnd_output_sgi_la_OBJECTS) $(libsnd_output_sgi_la_LIBADD) $(LIBS)
|
||||||
|
|
||||||
libsnd_output_sun_la_LDFLAGS= -version-info 1:0:0 $(SUN_LIBS)
|
libsnd_output_sun_la_LDFLAGS= -version-info 1:0:0
|
||||||
libsnd_output_sun_la_SOURCES= snd_sun.c
|
libsnd_output_sun_la_SOURCES= snd_sun.c
|
||||||
libsnd_output_sun.la: $(libsnd_output_sun_la_OBJECTS) $(libsnd_output_sun_la_DEPENDENCIES)
|
libsnd_output_sun.la: $(libsnd_output_sun_la_OBJECTS) $(libsnd_output_sun_la_DEPENDENCIES)
|
||||||
$(LINK) -rpath $(pluginpath) $(libsnd_output_sun_la_LDFLAGS) $(libsnd_output_sun_la_OBJECTS) $(libsnd_output_sun_la_LIBADD) $(LIBS)
|
$(LINK) -rpath $(pluginpath) $(libsnd_output_sun_la_LDFLAGS) $(libsnd_output_sun_la_OBJECTS) $(libsnd_output_sun_la_LIBADD) $(LIBS)
|
||||||
|
|
||||||
libsnd_output_win_la_LDFLAGS= -version-info 1:0:0 $(WIN_LIBS)
|
libsnd_output_win_la_LDFLAGS= -version-info 1:0:0 $(WINSND_LIBS)
|
||||||
libsnd_output_win_la_SOURCES= snd_win.c
|
libsnd_output_win_la_SOURCES= snd_win.c
|
||||||
libsnd_output_win.la: $(libsnd_output_win_la_OBJECTS) $(libsnd_output_win_la_DEPENDENCIES)
|
libsnd_output_win.la: $(libsnd_output_win_la_OBJECTS) $(libsnd_output_win_la_DEPENDENCIES)
|
||||||
$(LINK) -rpath $(pluginpath) $(libsnd_output_win_la_LDFLAGS) $(libsnd_output_win_la_OBJECTS) $(libsnd_output_win_la_LIBADD) $(LIBS)
|
$(LINK) -rpath $(pluginpath) $(libsnd_output_win_la_LDFLAGS) $(libsnd_output_win_la_OBJECTS) $(libsnd_output_win_la_LIBADD) $(LIBS)
|
||||||
|
|
|
@ -5,23 +5,23 @@ pkglibdir = @PLUGINDIR@
|
||||||
lib_LTLIBRARIES = libQFconsole.la
|
lib_LTLIBRARIES = libQFconsole.la
|
||||||
pkglib_LTLIBRARIES = libconsole_client.la libconsole_server.la
|
pkglib_LTLIBRARIES = libconsole_client.la libconsole_server.la
|
||||||
|
|
||||||
common_SOURCES = complete.c console.c inputline.c list.c
|
common_sources = complete.c console.c inputline.c list.c
|
||||||
client_SOURCES = client.c
|
client_sources = client.c
|
||||||
server_SOURCES = server.c
|
server_sources = server.c
|
||||||
|
|
||||||
libQFconsole_la_LDFLAGS = -version-info 1:0:0
|
libQFconsole_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFconsole_la_LIBADD =
|
libQFconsole_la_LIBADD =
|
||||||
libQFconsole_la_SOURCES = $(common_SOURCES)
|
libQFconsole_la_SOURCES = $(common_sources)
|
||||||
libQFconsole_la_DEPENDENCIES =
|
libQFconsole_la_DEPENDENCIES =
|
||||||
|
|
||||||
libconsole_client_la_LDFLAGS = -version-info 1:0:0
|
libconsole_client_la_LDFLAGS = -version-info 1:0:0
|
||||||
libconsole_client_la_LIBADD =
|
libconsole_client_la_LIBADD =
|
||||||
libconsole_client_la_SOURCES = $(client_SOURCES)
|
libconsole_client_la_SOURCES = $(client_sources)
|
||||||
libconsole_client_la_DEPENDENCIES =
|
libconsole_client_la_DEPENDENCIES =
|
||||||
|
|
||||||
libconsole_server_la_LDFLAGS = -version-info 1:0:0
|
libconsole_server_la_LDFLAGS = -version-info 1:0:0
|
||||||
libconsole_server_la_LIBADD = $(CURSES_LIBS)
|
libconsole_server_la_LIBADD = $(CURSES_LIBS)
|
||||||
libconsole_server_la_SOURCES = $(server_SOURCES)
|
libconsole_server_la_SOURCES = $(server_sources)
|
||||||
libconsole_server_la_DEPENDENCIES =
|
libconsole_server_la_DEPENDENCIES =
|
||||||
|
|
||||||
LIBLIST = libQFconsole.la
|
LIBLIST = libQFconsole.la
|
||||||
|
|
|
@ -22,26 +22,26 @@ endif
|
||||||
|
|
||||||
lib_LTLIBRARIES = libQFmodels.la $(MODELS_GL) $(MODELS_SW) $(MODELS_SW32)
|
lib_LTLIBRARIES = libQFmodels.la $(MODELS_GL) $(MODELS_SW) $(MODELS_SW32)
|
||||||
|
|
||||||
models_SOURCES = clip_hull.c model.c
|
models_sources = clip_hull.c model.c
|
||||||
|
|
||||||
libQFmodels_la_LDFLAGS = -version-info 1:0:0
|
libQFmodels_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFmodels_la_LIBADD = brush/libbrush.la
|
libQFmodels_la_LIBADD = brush/libbrush.la
|
||||||
libQFmodels_la_SOURCES = $(models_SOURCES)
|
libQFmodels_la_SOURCES = $(models_sources)
|
||||||
libQFmodels_la_DEPENDENCIES = brush/libbrush.la
|
libQFmodels_la_DEPENDENCIES = brush/libbrush.la
|
||||||
|
|
||||||
libQFmodels_gl_la_LDFLAGS = -version-info 1:0:0
|
libQFmodels_gl_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFmodels_gl_la_LIBADD = alias/libalias_gl.la brush/libbrush_gl.la sprite/libsprite_gl.la
|
libQFmodels_gl_la_LIBADD = alias/libalias_gl.la brush/libbrush_gl.la sprite/libsprite_gl.la
|
||||||
libQFmodels_gl_la_SOURCES = $(models_SOURCES) gl_model_fullbright.c
|
libQFmodels_gl_la_SOURCES = $(models_sources) gl_model_fullbright.c
|
||||||
libQFmodels_gl_la_DEPENDENCIES = alias/libalias_gl.la brush/libbrush_gl.la sprite/libsprite_gl.la
|
libQFmodels_gl_la_DEPENDENCIES = alias/libalias_gl.la brush/libbrush_gl.la sprite/libsprite_gl.la
|
||||||
|
|
||||||
libQFmodels_sw_la_LDFLAGS = -version-info 1:0:0
|
libQFmodels_sw_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFmodels_sw_la_LIBADD = alias/libalias_sw.la brush/libbrush_sw.la sprite/libsprite_sw.la
|
libQFmodels_sw_la_LIBADD = alias/libalias_sw.la brush/libbrush_sw.la sprite/libsprite_sw.la
|
||||||
libQFmodels_sw_la_SOURCES = $(models_SOURCES)
|
libQFmodels_sw_la_SOURCES = $(models_sources)
|
||||||
libQFmodels_sw_la_DEPENDENCIES = alias/libalias_sw.la brush/libbrush_sw.la sprite/libsprite_sw.la
|
libQFmodels_sw_la_DEPENDENCIES = alias/libalias_sw.la brush/libbrush_sw.la sprite/libsprite_sw.la
|
||||||
|
|
||||||
libQFmodels_sw32_la_LDFLAGS = -version-info 1:0:0
|
libQFmodels_sw32_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFmodels_sw32_la_LIBADD = alias/libalias_sw32.la brush/libbrush_sw32.la sprite/libsprite_sw32.la
|
libQFmodels_sw32_la_LIBADD = alias/libalias_sw32.la brush/libbrush_sw32.la sprite/libsprite_sw32.la
|
||||||
libQFmodels_sw32_la_SOURCES = $(models_SOURCES)
|
libQFmodels_sw32_la_SOURCES = $(models_sources)
|
||||||
libQFmodels_sw32_la_DEPENDENCIES = alias/libalias_sw32.la brush/libbrush_sw32.la sprite/libsprite_sw32.la
|
libQFmodels_sw32_la_DEPENDENCIES = alias/libalias_sw32.la brush/libbrush_sw32.la sprite/libsprite_sw32.la
|
||||||
|
|
||||||
LIBLIST = libQFmodels.la libQFmodels_gl.la libQFmodels_sw.la libQFmodels_sw32.la
|
LIBLIST = libQFmodels.la libQFmodels_gl.la libQFmodels_sw.la libQFmodels_sw32.la
|
||||||
|
|
|
@ -21,22 +21,22 @@ endif
|
||||||
|
|
||||||
lib_LTLIBRARIES = $(RENDERER_GL) $(RENDERER_SW) $(RENDERER_SW32)
|
lib_LTLIBRARIES = $(RENDERER_GL) $(RENDERER_SW) $(RENDERER_SW32)
|
||||||
|
|
||||||
common_SOURCES = r_cvar.c r_efrag.c r_ent.c r_graph.c r_light.c r_main.c \
|
common_sources = r_cvar.c r_efrag.c r_ent.c r_graph.c r_light.c r_main.c \
|
||||||
r_part.c
|
r_part.c
|
||||||
|
|
||||||
libQFrenderer_gl_la_LDFLAGS = -version-info 1:0:0
|
libQFrenderer_gl_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFrenderer_gl_la_LIBADD = gl/libgl.la
|
libQFrenderer_gl_la_LIBADD = gl/libgl.la
|
||||||
libQFrenderer_gl_la_SOURCES = $(common_SOURCES)
|
libQFrenderer_gl_la_SOURCES = $(common_sources)
|
||||||
libQFrenderer_gl_la_DEPENDENCIES = gl/libgl.la
|
libQFrenderer_gl_la_DEPENDENCIES = gl/libgl.la
|
||||||
|
|
||||||
libQFrenderer_sw_la_LDFLAGS = -version-info 1:0:0
|
libQFrenderer_sw_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFrenderer_sw_la_LIBADD = sw/libsw.la
|
libQFrenderer_sw_la_LIBADD = sw/libsw.la
|
||||||
libQFrenderer_sw_la_SOURCES = $(common_SOURCES)
|
libQFrenderer_sw_la_SOURCES = $(common_sources)
|
||||||
libQFrenderer_sw_la_DEPENDENCIES = sw/libsw.la
|
libQFrenderer_sw_la_DEPENDENCIES = sw/libsw.la
|
||||||
|
|
||||||
libQFrenderer_sw32_la_LDFLAGS = -version-info 1:0:0
|
libQFrenderer_sw32_la_LDFLAGS = -version-info 1:0:0
|
||||||
libQFrenderer_sw32_la_LIBADD = sw32/libsw32.la
|
libQFrenderer_sw32_la_LIBADD = sw32/libsw32.la
|
||||||
libQFrenderer_sw32_la_SOURCES = $(common_SOURCES)
|
libQFrenderer_sw32_la_SOURCES = $(common_sources)
|
||||||
libQFrenderer_sw32_la_DEPENDENCIES = sw32/libsw32.la
|
libQFrenderer_sw32_la_DEPENDENCIES = sw32/libsw32.la
|
||||||
|
|
||||||
LIBLIST = libQFrenderer_gl.la libQFrenderer_sw.la libQFrenderer_sw32.la
|
LIBLIST = libQFrenderer_gl.la libQFrenderer_sw.la libQFrenderer_sw32.la
|
||||||
|
|
|
@ -16,13 +16,13 @@ libQFjs_la_LDFLAGS= -version-info 1:0:0
|
||||||
|
|
||||||
if JOYTYPE_LINUX
|
if JOYTYPE_LINUX
|
||||||
libQFjs_la_SOURCES= joy.c joy_linux.c
|
libQFjs_la_SOURCES= joy.c joy_linux.c
|
||||||
endif
|
else
|
||||||
if JOYTYPE_WIN32
|
if JOYTYPE_WIN32
|
||||||
libQFjs_la_SOURCES= joy.c joy_win.c
|
libQFjs_la_SOURCES= joy.c joy_win.c
|
||||||
endif
|
else
|
||||||
if JOYTYPE_NULL
|
|
||||||
libQFjs_la_SOURCES= joy.c joy_null.c
|
libQFjs_la_SOURCES= joy.c joy_null.c
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
libQFjs_la_CFLAGS= $(JOY_CFLAGS)
|
libQFjs_la_CFLAGS= $(JOY_CFLAGS)
|
||||||
libQFjs.la: $(libQFjs_la_OBJECTS) $(libQFjs_la_DEPENDENCIES)
|
libQFjs.la: $(libQFjs_la_OBJECTS) $(libQFjs_la_DEPENDENCIES)
|
||||||
$(LINK) -rpath $(libdir) $(libQFjs_la_LDFLAGS) $(libQFjs_la_OBJECTS) $(libQFjs_la_LIBADD) $(LIBS)
|
$(LINK) -rpath $(libdir) $(libQFjs_la_LDFLAGS) $(libQFjs_la_OBJECTS) $(libQFjs_la_LIBADD) $(LIBS)
|
||||||
|
|
|
@ -45,7 +45,7 @@ endif
|
||||||
|
|
||||||
noinst_LTLIBRARIES= libqfnet.la libasm.la
|
noinst_LTLIBRARIES= libqfnet.la libasm.la
|
||||||
|
|
||||||
common_SOURCES= game.c host_skin.c skin.c world.c com.c
|
common_sources= game.c host_skin.c skin.c world.c com.c
|
||||||
|
|
||||||
common_ldflags= -export-dynamic
|
common_ldflags= -export-dynamic
|
||||||
|
|
||||||
|
@ -69,15 +69,15 @@ client_LIBFILES= \
|
||||||
client_LIBS= $(client_LIBFILES) libasm.la libqfnet.la $(NET_LIBS)
|
client_LIBS= $(client_LIBFILES) libasm.la libqfnet.la $(NET_LIBS)
|
||||||
client_LIB_DEPS=$(client_LIBFILES) libasm.la libqfnet.la
|
client_LIB_DEPS=$(client_LIBFILES) libasm.la libqfnet.la
|
||||||
|
|
||||||
client_SOURCES= cl_cam.c cl_cmd.c cl_demo.c cl_input.c cl_main.c cl_screen.c \
|
client_sources= cl_cam.c cl_cmd.c cl_demo.c cl_input.c cl_main.c cl_screen.c \
|
||||||
cl_parse.c cl_tent.c cl_view.c \
|
cl_parse.c cl_tent.c cl_view.c \
|
||||||
console.c locs.c sbar.c
|
console.c locs.c sbar.c
|
||||||
|
|
||||||
server_SOURCES= host.c host_cmd.c pr_cmds.c sv_cvar.c sv_main.c \
|
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
|
sv_move.c sv_phys.c sv_progs.c sv_user.c
|
||||||
|
|
||||||
combined_SOURCES= \
|
combined_sources= \
|
||||||
$(common_SOURCES) $(client_SOURCES) $(server_SOURCES)
|
$(common_sources) $(client_sources) $(server_sources)
|
||||||
|
|
||||||
# Software-rendering targets
|
# Software-rendering targets
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ soft_QFLIBS= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw.a \
|
||||||
$(top_builddir)/libs/models/libQFmodels_sw.la
|
$(top_builddir)/libs/models/libQFmodels_sw.la
|
||||||
|
|
||||||
# ... Linux FBDev
|
# ... Linux FBDev
|
||||||
nq_fbdev_SOURCES= $(combined_SOURCES) sys_unix.c
|
nq_fbdev_SOURCES= $(combined_sources) sys_unix.c
|
||||||
nq_fbdev_LDADD= $(soft_QFLIBS) \
|
nq_fbdev_LDADD= $(soft_QFLIBS) \
|
||||||
$(top_builddir)/libs/video/targets/libQFfbdev.la \
|
$(top_builddir)/libs/video/targets/libQFfbdev.la \
|
||||||
$(client_LIBS)
|
$(client_LIBS)
|
||||||
|
@ -96,7 +96,7 @@ nq_fbdev_DEPENDENCIES= $(soft_QFLIBS) \
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... SciTech MGL
|
# ... SciTech MGL
|
||||||
nq_mgl_SOURCES= $(combined_SOURCES) sys_win.c
|
nq_mgl_SOURCES= $(combined_sources) sys_win.c
|
||||||
nq_mgl_LDADD= $(soft_QFLIBS) \
|
nq_mgl_LDADD= $(soft_QFLIBS) \
|
||||||
$(top_builddir)/libs/video/targets/libQFmgl.la \
|
$(top_builddir)/libs/video/targets/libQFmgl.la \
|
||||||
$(client_LIBS) $(MGL_LIBS)
|
$(client_LIBS) $(MGL_LIBS)
|
||||||
|
@ -106,7 +106,7 @@ nq_mgl_DEPENDENCIES= $(soft_QFLIBS) \
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... SDL, version 1.2 and higher
|
# ... SDL, version 1.2 and higher
|
||||||
nq_sdl_SOURCES= $(combined_SOURCES) sys_sdl.c
|
nq_sdl_SOURCES= $(combined_sources) sys_sdl.c
|
||||||
nq_sdl_LDADD= $(soft_QFLIBS) \
|
nq_sdl_LDADD= $(soft_QFLIBS) \
|
||||||
$(top_builddir)/libs/video/targets/libQFsdl.la \
|
$(top_builddir)/libs/video/targets/libQFsdl.la \
|
||||||
$(client_LIBS) $(SDL_LIBS)
|
$(client_LIBS) $(SDL_LIBS)
|
||||||
|
@ -116,7 +116,7 @@ nq_sdl_DEPENDENCIES= $(soft_QFLIBS) \
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... 32-bit software, SDL
|
# ... 32-bit software, SDL
|
||||||
nq_sdl32_SOURCES= $(combined_SOURCES) sys_sdl.c
|
nq_sdl32_SOURCES= $(combined_sources) sys_sdl.c
|
||||||
nq_sdl32_LDADD= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw32.a \
|
nq_sdl32_LDADD= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw32.a \
|
||||||
$(top_builddir)/libs/models/libQFmodels_sw32.la \
|
$(top_builddir)/libs/models/libQFmodels_sw32.la \
|
||||||
$(top_builddir)/libs/video/targets/libQFsdl32.la \
|
$(top_builddir)/libs/video/targets/libQFsdl32.la \
|
||||||
|
@ -128,7 +128,7 @@ nq_sdl32_DEPENDENCIES= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_s
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... Linux SVGAlib
|
# ... Linux SVGAlib
|
||||||
nq_svga_SOURCES= $(combined_SOURCES) sys_unix.c
|
nq_svga_SOURCES= $(combined_sources) sys_unix.c
|
||||||
nq_svga_LDADD= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw.a \
|
nq_svga_LDADD= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw.a \
|
||||||
$(top_builddir)/libs/models/libQFmodels_sw.la \
|
$(top_builddir)/libs/models/libQFmodels_sw.la \
|
||||||
$(top_builddir)/libs/video/targets/libQFsvga.la \
|
$(top_builddir)/libs/video/targets/libQFsvga.la \
|
||||||
|
@ -140,7 +140,7 @@ nq_svga_DEPENDENCIES= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... X11
|
# ... X11
|
||||||
nq_x11_SOURCES= $(combined_SOURCES) sys_unix.c
|
nq_x11_SOURCES= $(combined_sources) sys_unix.c
|
||||||
nq_x11_LDADD= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw.a \
|
nq_x11_LDADD= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw.a \
|
||||||
$(top_builddir)/libs/models/libQFmodels_sw.la \
|
$(top_builddir)/libs/models/libQFmodels_sw.la \
|
||||||
$(top_builddir)/libs/video/targets/libQFx11.la \
|
$(top_builddir)/libs/video/targets/libQFx11.la \
|
||||||
|
@ -155,7 +155,7 @@ nq_x11_DEPENDENCIES= $(top_builddir)/libs/video/renderer/.libs/libQFrenderer_sw.
|
||||||
# OpenGL-using targets
|
# OpenGL-using targets
|
||||||
|
|
||||||
# ... 3Dfx Voodoo 1 and 2 SVGAlib-based console GL
|
# ... 3Dfx Voodoo 1 and 2 SVGAlib-based console GL
|
||||||
nq_3dfx_SOURCES= $(combined_SOURCES) sys_unix.c
|
nq_3dfx_SOURCES= $(combined_sources) sys_unix.c
|
||||||
nq_3dfx_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
nq_3dfx_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
||||||
$(top_builddir)/libs/video/targets/libQFtdfx.la \
|
$(top_builddir)/libs/video/targets/libQFtdfx.la \
|
||||||
|
@ -168,7 +168,7 @@ nq_3dfx_DEPENDENCIES= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... OpenGL in X Window
|
# ... OpenGL in X Window
|
||||||
nq_glx_SOURCES= $(combined_SOURCES) sys_unix.c
|
nq_glx_SOURCES= $(combined_sources) sys_unix.c
|
||||||
nq_glx_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
nq_glx_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
||||||
$(top_builddir)/libs/video/targets/libQFglx.la \
|
$(top_builddir)/libs/video/targets/libQFglx.la \
|
||||||
|
@ -182,7 +182,7 @@ nq_glx_DEPENDENCIES= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... Simple Directmedia Layer, version 1.2 and higher, in GL mode
|
# ... Simple Directmedia Layer, version 1.2 and higher, in GL mode
|
||||||
nq_sgl_SOURCES= $(combined_SOURCES) sys_sdl.c
|
nq_sgl_SOURCES= $(combined_sources) sys_sdl.c
|
||||||
nq_sgl_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
nq_sgl_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
||||||
$(top_builddir)/libs/video/targets/libQFsgl.la \
|
$(top_builddir)/libs/video/targets/libQFsgl.la \
|
||||||
|
@ -195,7 +195,7 @@ nq_sgl_DEPENDENCIES= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# ... SGI/Microsoft WGL (Windows OpenGL)
|
# ... SGI/Microsoft WGL (Windows OpenGL)
|
||||||
nq_wgl_SOURCES= $(combined_SOURCES) conproc.c sys_win.c
|
nq_wgl_SOURCES= $(combined_sources) conproc.c sys_win.c
|
||||||
nq_wgl_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
nq_wgl_LDADD= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
$(top_builddir)/libs/models/libQFmodels_gl.la \
|
||||||
$(top_builddir)/libs/video/targets/libQFwgl.la \
|
$(top_builddir)/libs/video/targets/libQFwgl.la \
|
||||||
|
@ -207,9 +207,9 @@ nq_wgl_DEPENDENCIES= $(top_builddir)/libs/video/renderer/libQFrenderer_gl.la \
|
||||||
$(client_LIB_DEPS)
|
$(client_LIB_DEPS)
|
||||||
|
|
||||||
# Dedicated Server
|
# Dedicated Server
|
||||||
ded_SOURCES= sys_unixd.c sv_ded.c
|
ded_sources= sys_unixd.c sv_ded.c
|
||||||
|
|
||||||
nq_server_SOURCES= $(common_SOURCES) $(server_SOURCES) $(ded_SOURCES)
|
nq_server_sources= $(common_sources) $(server_sources) $(ded_sources)
|
||||||
nq_server_LDADD= libqfnet.la libasm.la
|
nq_server_LDADD= libqfnet.la libasm.la
|
||||||
nq_server_DEPENDENCIES= libqfnet.la libasm.la
|
nq_server_DEPENDENCIES= libqfnet.la libasm.la
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue