mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 09:22:43 +00:00
Names and locations of declarations are still up in the air, but things seem to be working assuming my test code is correct.
29 lines
1.2 KiB
Makefile
29 lines
1.2 KiB
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
SUBDIRS= alias brush sprite . test
|
|
AM_CFLAGS= @PREFER_PIC@
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
lib_LTLIBRARIES= libQFmodels.la @VID_MODEL_TARGETS@
|
|
EXTRA_LTLIBRARIES= libQFmodels_gl.la libQFmodels_sw.la
|
|
|
|
models_sources = clip_hull.c model.c portal.c trace.c winding.c
|
|
|
|
libQFmodels_la_LDFLAGS= -version-info $(QUAKE_LIBRARY_VERSION_INFO) -no-undefined
|
|
libQFmodels_la_LIBADD= brush/libbrush.la $(top_builddir)/libs/util/libQFutil.la
|
|
libQFmodels_la_SOURCES= $(models_sources) null_model.c
|
|
libQFmodels_la_DEPENDENCIES= brush/libbrush.la
|
|
|
|
gl_LIBS= \
|
|
alias/libalias_gl.la brush/libbrush_gl.la sprite/libsprite_gl.la
|
|
libQFmodels_gl_la_LDFLAGS= -version-info $(QUAKE_LIBRARY_VERSION_INFO) -rpath $(libdir)
|
|
libQFmodels_gl_la_LIBADD= $(gl_LIBS) $(top_builddir)/libs/util/libQFutil.la
|
|
libQFmodels_gl_la_SOURCES= $(models_sources) gl_model_fullbright.c
|
|
libQFmodels_gl_la_DEPENDENCIES= $(gl_LIBS)
|
|
|
|
sw_LIBS= \
|
|
alias/libalias_sw.la brush/libbrush_sw.la sprite/libsprite_sw.la
|
|
libQFmodels_sw_la_LDFLAGS= -version-info $(QUAKE_LIBRARY_VERSION_INFO) -rpath $(libdir) -no-undefined
|
|
libQFmodels_sw_la_LIBADD= $(sw_LIBS) $(top_builddir)/libs/util/libQFutil.la
|
|
libQFmodels_sw_la_SOURCES= $(models_sources)
|
|
libQFmodels_sw_la_DEPENDENCIES= $(sw_LIBS)
|