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-08-08 11:50:28 -07:00
|
|
|
frameint.h frameresource.h input.h listmacs.h resly.h strnlen1.h \
|
2007-10-22 11:40:34 -07:00
|
|
|
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-06-05 04:46:00 -07:00
|
|
|
frame.c frameresource.c input.c resource_lexer.lex.c resource_parser.tab.c \
|
2007-10-22 11:40:34 -07:00
|
|
|
strnlen1.c strres.c strres_lexer.lex.c strres_parser.tab.c treap.c trig.c \
|
|
|
|
tagfile.c
|