quakeforge/libs/util/Makefile.am
Jeff Teunissen d63243380f Aaaaaaand, it's done!
Special note: I hope to never do this again. :)
2001-09-28 10:31:20 +00:00

30 lines
725 B
Makefile

INCLUDES= -I$(top_srcdir)/include
lib_LTLIBRARIES= libQFutil.la
noinst_LTLIBRARIES= libasm.la
if ASM_ARCH
libasm_la_SOURCES= math.S
else
libasm_la_SOURCES=
endif
EXTRA_libasm_la_SOURCES=math.S
if BUILD_FNMATCH
fnmatch_SRC= fnmatch.c dirent.c
else
fnmatch_SRC=
endif
libQFutil_la_LDFLAGS= -version-info 1:0:0
libQFutil_la_LIBADD= libasm.la $(Z_LIBS) $(DL_LIBS)
libQFutil_la_DEPENDENCIES= libasm.la
libQFutil_la_SOURCES= \
checksum.c cmd.c console.c con_print.c crc.c cvar.c fendian.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 tga.c va.c \
ver_check.c wad.c zone.c $(fnmatch_SRC)
EXTRA_libQFutil_la_SOURCES= fnmatch.c dirent.c