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-08-21 06:16:09 -07:00
|
|
|
BUILT_SOURCES = resource_lexer.lex.c strres_lexer.lex.c resource_parser.tab.c strres_parser.tab.c resource_parser.tab.h strres_parser.tab.h
|
|
|
|
CLEANFILES = resource_lexer.lex.c strres_lexer.lex.c resource_parser.tab.c strres_parser.tab.c 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 11:14:24 -07:00
|
|
|
noinst_HEADERS = configfile.h cursors.h cursors16.h debug.h fractions.h frame.h \
|
2007-11-11 12:58:10 -08:00
|
|
|
frameint.h frameresource.h input.h listmacs.h printf_ext.h resly.h \
|
|
|
|
strlfuncs.h strnlen1.h strres.h strresly.h treap.h treapint.h trig.h \
|
|
|
|
types.h tagfile.h
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-10 10:36:16 -07:00
|
|
|
libframework_a_SOURCES = SDL_framerate.c configfile.c debug.c exceptionhandler.c \
|
2007-11-11 12:58:10 -08:00
|
|
|
frame.c frameresource.c input.c printf_ext.c resource_lexer.lex.c \
|
|
|
|
resource_parser.tab.c strnlen1.c strres.c strres_lexer.lex.c \
|
2007-11-29 15:10:54 -08:00
|
|
|
strres_parser.tab.c treap.c trig.c tagfile.c
|