1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
%.tab.h %.tab.c:: %.y
$(YACC) $(YFLAGS) $(AM_YFLAGS) -o$@ $<
%.lex.c:: %.l
$(LEX) $(LFLAGS) $(AM_LFLAGS) -o$@ $<
AM_CPPFLAGS = -DYY_NO_INPUT $(SDL_CFLAGS) $(WZ_CPPFLAGS)
AM_CFLAGS = $(WZ_CFLAGS)
AM_LFLAGS = $(FLEX_FLAGS)
AM_YFLAGS = -d
BUILT_SOURCES = \
resource_lexer.lex.c \
resource_parser.tab.c \
resource_parser.tab.h \
strres_lexer.lex.c \
strres_parser.tab.c \
strres_parser.tab.h
CLEANFILES = \
resource_lexer.lex.c \
resource_parser.tab.c \
resource_parser.tab.h \
strres_lexer.lex.c \
strres_parser.tab.c \
strres_parser.tab.h
EXTRA_DIST = \
resource_lexer.l resource_parser.y \
strres_lexer.l strres_parser.y
noinst_LIBRARIES = libframework.a
noinst_HEADERS = \
strres_parser.tab.h \
resource_parser.tab.h \
configfile.h \
cursors.h \
debug.h \
file.h \
fixedpoint.h \
frame.h \
frameint.h \
frameresource.h \
i18n.h \
input.h \
lexer_input.h \
listmacs.h \
math_ext.h \
physfs_ext.h \
resly.h \
stdio_ext.h \
string_ext.h \
strres.h \
strresly.h \
tagfile.h \
treap.h \
trig.h \
types.h \
utf.h \
vector.h \
config-macosx.h \
endian_hack.h \
gettext.h \
macros.h \
SDL_framerate.h \
wzglobal.h
libframework_a_SOURCES = \
resource_lexer.lex.c \
resource_parser.tab.c \
strres_lexer.lex.c \
strres_parser.tab.c \
configfile.c \
cursors16.c \
cursors32.c \
cursors.c \
debug.c \
frame.c \
frameresource.c \
i18n.c \
input.c \
lexer_input.c \
SDL_framerate.c \
stdio_ext.c \
strres.c \
tagfile.c \
treap.c \
trig.c \
utf.c
if MOTIF_AVAILABLE
libframework_a_SOURCES += \
x-motif-messagebox.c
noinst_HEADERS += \
x-motif-messagebox.h
endif
|