quakeforge/libs/models/alias/Makefile.am
Zephaniah E. Hull 3715430479 This is changing more then I wanted to at once, however.
The major change is that we no longer require libGL to even exist on the
system at compile time for the GL targets, we dynamicly link to the
libGL of choice at run time. (This probably breaks most non-linux
systems, and all GL targets except -glx, some fixup will be needed.)
(This also kills glquake, dead dead DEAD! GONE FOREVER! WHEE!)

Some gl_draw cleanup.

Commented out equake alias model occlusion test stuff, very experimental.

Added the .lo and .la patterns to the .gitignore files.

Some minor sbar cleanup. (We don't use the disc in use symbol for
anything.)
2001-06-24 09:25:55 +00:00

21 lines
416 B
Makefile

INCLUDES= -I$(top_srcdir)/include
if BUILD_GL
ALIAS_GL = libalias_gl.la
else
ALIAS_GL =
endif
if BUILD_SW
ALIAS_SW = libalias_sw.la
else
ALIAS_SW =
endif
noinst_LTLIBRARIES = $(ALIAS_GL) $(ALIAS_SW)
libalias_gl_la_LDFLAGS = -version-info 1:0:0
libalias_gl_la_SOURCES = gl_mesh.c gl_model_alias.c model_alias.c
libalias_sw_la_LDFLAGS = -version-info 1:0:0
libalias_sw_la_SOURCES = sw_model_alias.c model_alias.c