warzone2100/lib/gamelib/makefile.win32

24 lines
405 B
Plaintext

top_srcdir=../..
top_builddir=$(top_srcdir)
include $(top_srcdir)/makerules/common.mk
# Due to the lexer's dependencies on the parser's header we need to compile the
# parsers first
PARSERS= \
audp_parser.tab.c \
audp_lexer.lex.c
SRC= \
$(PARSERS) \
anim.cpp \
animobj.cpp \
gtime.cpp \
hashtable.cpp
LIB=gamelib
CLEANFILES=audp_parser.tab.h $(PARSERS)
include $(top_srcdir)/makerules/lib.mk