mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
6fcf8395ca
changes between nq and qw (gl_mtexable, texture_mode and GL_CheckBrightness)
63 lines
2.4 KiB
Makefile
63 lines
2.4 KiB
Makefile
INCLUDES= -I$(top_srcdir)/include $(GGI_CFLAGS) $(MGL_CFLAGS) $(SDL_CFLAGS) $(SVGA_CFLAGS) $(X_CFLAGS) $(GLX_CFLAGS) $(TDFXGL_CFLAGS)
|
|
|
|
lib_LTLIBRARIES = libQFjs.la @VID_TARGETS@
|
|
EXTRA_LTLIBRARIES = libQFfbdev.la libQFsvga.la libQFx11.la libQFglx.la libQFsdl.la libQFsgl.la libQFtdfx.la libQFwgl.la libQFmgl.la
|
|
|
|
libQFjs_la_LDFLAGS= -version-info 1:0:0
|
|
|
|
if JOYTYPE_LINUX
|
|
libQFjs_la_SOURCES= joy.c joy_linux.c
|
|
endif
|
|
if JOYTYPE_WIN32
|
|
libQFjs_la_SOURCES= joy.c joy_win.c
|
|
endif
|
|
if JOYTYPE_NULL
|
|
libQFjs_la_SOURCES= joy.c joy_null.c
|
|
endif
|
|
libQFjs_la_CFLAGS= $(JOY_CFLAGS)
|
|
|
|
# Linux FBdev
|
|
YFLAGS = -d
|
|
libQFfbdev_la_LDFLAGS= -version-info 1:0:0
|
|
libQFfbdev_la_SOURCES= fbset.c fbset_modes_y.y fbset_modes_l.l \
|
|
in_common.c in_fbdev.c vid.c vid_common_sw.c vid_fbdev.c
|
|
YACCLEX_CLEANFILES= fbset_modes_y.c fbset_modes_y.h \
|
|
fbset_modes_y.tab.h fbset_modes_l.c
|
|
#EXTRA_libQFfbdev_la_SOURCES=fbset_modes_y.h
|
|
|
|
fbset_modes_y.lo: $(srcdir)/fbset_modes_y.c
|
|
$(LTCOMPILE) -Wno-error -c $<
|
|
fbset_modes_l.lo: $(srcdir)/fbset_modes_l.c
|
|
$(LTCOMPILE) -Wno-error -c $<
|
|
|
|
libQFmgl_la_LDFLAGS= -version-info 1:0:0
|
|
libQFmgl_la_SOURCES= in_common.c in_win.c vid.c vid_common_sw.c vid_mgl.c
|
|
|
|
libQFsdl_la_LDFLAGS= -version-info 1:0:0
|
|
libQFsdl_la_SOURCES= in_common.c in_sdl.c vid.c vid_common_sw.c vid_sdl.c
|
|
|
|
libQFsvga_la_LDFLAGS= -version-info 1:0:0
|
|
libQFsvga_la_SOURCES= d_copy.S in_common.c in_svgalib.c vid.c vid_common_sw.c \
|
|
vid_svgalib.c
|
|
|
|
libQFx11_la_LDFLAGS= -version-info 1:0:0 $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) $(X_SHM_LIB)
|
|
libQFx11_la_SOURCES= in_common.c in_x11.c vid.c context_x11.c dga_check.c \
|
|
vid_common_sw.c vid_x11.c
|
|
|
|
libQFglx_la_LDFLAGS= -version-info 1:0:0 $(GLX_LIBS) $(X_PRE_LIBS) $(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS)
|
|
libQFglx_la_SOURCES= in_common.c in_x11.c vid.c context_x11.c dga_check.c \
|
|
qfgl_ext.c vid_common_gl.c vid_glx.c
|
|
|
|
libQFsgl_la_LDFLAGS= -version-info 1:0:0
|
|
libQFsgl_la_SOURCES= in_common.c in_sdl.c qfgl_ext.c vid.c vid_common_gl.c vid_sgl.c
|
|
|
|
libQFtdfx_la_LDFLAGS= -version-info 1:0:0
|
|
libQFtdfx_la_SOURCES= in_common.c in_svgalib.c qfgl_ext.c vid.c vid_common_gl.c vid_3dfxsvga.c
|
|
|
|
libQFwgl_la_LDFLAGS= -version-info 1:0:0
|
|
libQFwgl_la_SOURCES= in_common.c in_win.c qfgl_ext.c vid.c vid_wgl.c
|
|
|
|
LIBLIST = $(lib_LTLIBRARIES) @LIBRARY_SEARCH_PATH@
|
|
|
|
# Kill the temp files, hopefully.
|
|
CLEANFILES = *.i *.s $(YACCLEX_CLEANFILES)
|