2007-01-09 14:07:58 -08:00
|
|
|
%.tab.h %.tab.c: %.y
|
|
|
|
$(YACC) $(YFLAGS) $(AM_YFLAGS) -o$@ $<
|
|
|
|
|
|
|
|
%.lex.c: %.l
|
|
|
|
$(LEX) $(LFLAGS) $(AM_LFLAGS) -o$@ $<
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
AM_LFLAGS = $(FLEX_FLAGS)
|
|
|
|
AM_YFLAGS = -d
|
2007-01-09 14:07:58 -08:00
|
|
|
BUILT_SOURCES = resource_parser.tab.h strres_parser.tab.h
|
2007-06-28 10:47:08 -07:00
|
|
|
noinst_LIBRARIES = libframework.a
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)
|
|
|
|
libframework_a_SOURCES = \
|
2006-07-05 15:19:23 -07:00
|
|
|
SDL_framerate.c \
|
2007-01-09 14:07:58 -08:00
|
|
|
resource_lexer.lex.c \
|
|
|
|
resource_parser.tab.c \
|
|
|
|
strres_lexer.lex.c \
|
|
|
|
strres_parser.tab.c \
|
2007-06-28 10:47:08 -07:00
|
|
|
block.c \
|
|
|
|
configfile.c \
|
|
|
|
debug.c \
|
2006-04-08 12:14:30 -07:00
|
|
|
frame.c \
|
2007-06-28 10:47:08 -07:00
|
|
|
frameresource.c \
|
|
|
|
heap.c \
|
2006-04-08 12:14:30 -07:00
|
|
|
input.c \
|
2007-06-28 10:47:08 -07:00
|
|
|
mem.c \
|
|
|
|
strres.c \
|
|
|
|
treap.c \
|
|
|
|
trig.c \
|
|
|
|
block.h \
|
|
|
|
font.h \
|
|
|
|
heap.h \
|
|
|
|
memint.h \
|
|
|
|
treap.h \
|
|
|
|
fractions.h \
|
|
|
|
mono.h \
|
|
|
|
strres.h \
|
|
|
|
treapint.h \
|
|
|
|
frame.h \
|
|
|
|
input.h \
|
|
|
|
strresly.h \
|
|
|
|
trig.h \
|
|
|
|
debug.h \
|
|
|
|
frameint.h \
|
|
|
|
listmacs.h \
|
|
|
|
resly.h \
|
|
|
|
types.h \
|
|
|
|
frameresource.h \
|
|
|
|
configfile.h \
|
|
|
|
mem.h
|
|
|
|
|
|
|
|
# ugly hack to circumvent ugly hack
|
2006-08-12 03:45:49 -07:00
|
|
|
EXTRA_DIST= cursors.h cursors16.h
|