quakeforge/libs/util/Makefile.am
Brian Koropoff 557846b220 This is the first commit to the newcmd branch, which is a mostly-rewritten
console command parser.  It will eventually include html-like tags for
modifying text (gold numbers, brown characters, etc) and escaped characters.
The major differences so far are that dynamic strings are now used instead
of static buffers, and single quotes can be used to enclose tokens as
well as double quotes.
2002-03-03 03:36:27 +00:00

34 lines
766 B
Makefile

AUTOMAKE_OPTIONS= foreign
INCLUDES= -I$(top_srcdir)/include
lib_LTLIBRARIES= libQFutil.la
if ASM_ARCH
noinst_LTLIBRARIES= libasm.la
else
noinst_LTLIBRARIES=
endif
asm_src= math.S
libasm_la_SOURCES= $(asm_src)
fnmatch_src= fnmatch.c dirent.c
if BUILD_FNMATCH
fnmatch= $(fnmatch_src)
else
fnmatch=
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 crc.c cvar.c fendian.c getopt.c getopt1.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 string.c sys.c \
tga.c va.c ver_check.c wad.c zone.c dstring.c $(fnmatch)
EXTRA_DIST= $(asm_src) $(fnmatch_src)