mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
8c13809e9c
platforms). Done by moving the asm objects into libasm.la (yes, there's one in each dir that needs it) so that the Makefiles don't explode.
33 lines
699 B
Makefile
33 lines
699 B
Makefile
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
lib_LTLIBRARIES = libQFutil.la
|
|
|
|
if BUILD_FNMATCH
|
|
fnmatch_SRC = fnmatch.c dirent.c
|
|
else
|
|
fnmatch_SRC =
|
|
endif
|
|
|
|
if ASM_ARCH
|
|
ASM = libasm.la
|
|
else
|
|
ASM =
|
|
endif
|
|
|
|
noinst_LTLIBRARIES = $(ASM)
|
|
|
|
libasm_la_SOURCES = math.S
|
|
|
|
libQFutil_la_LDFLAGS = -version-info 1:0:0 $(Z_LIBS) $(DL_LIBS)
|
|
libQFutil_la_LIBADD = $(ASM)
|
|
libQFutil_la_SOURCES = \
|
|
checksum.c cmd.c console.c con_print.c crc.c cvar.c hash.c \
|
|
info.c link.c \
|
|
mathlib.c \
|
|
mdfour.c msg.c pcx.c plugin.c qargs.c qendian.c qfplist.c quakefs.c \
|
|
quakeio.c sizebuf.c sys.c sys_error.c tga.c va.c ver_check.c wad.c \
|
|
zone.c $(fnmatch_SRC)
|
|
|
|
LIBLIST = libQFutil.la @LIBRARY_SEARCH_PATH@
|
|
|
|
EXTRA_DIST = fnmatch.c dirent.c
|