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-03-29 03:08:12 -07:00
|
|
|
CLEANFILES = resource_parser.tab.h strres_parser.tab.h
|
2007-02-16 06:36:03 -08:00
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
noinst_LIBRARIES = libframework.a
|
2007-04-03 03:33:26 -07:00
|
|
|
noinst_HEADERS = configfile.h cursors.h cursors16.h debug.h font.h fractions.h frame.h \
|
|
|
|
frameint.h frameresource.h heap.h input.h listmacs.h mem.h resly.h \
|
2007-02-16 06:36:03 -08:00
|
|
|
strres.h strresly.h treap.h treapint.h trig.h types.h
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-03 03:33:26 -07:00
|
|
|
libframework_a_SOURCES = SDL_framerate.c configfile.c debug.c exceptionhandler.c frame.c \
|
|
|
|
frameresource.c heap.c input.c resource_lexer.lex.c resource_parser.tab.c \
|
2007-02-16 06:36:03 -08:00
|
|
|
strres.c strres_lexer.lex.c strres_parser.tab.c treap.c trig.c
|