📄 makefile.am
字号:
LEXLIB = @LEXLIB@DEBUG = --debugAM_YFLAGS = -d# seems that the default is to add BUILT_SOURCES in MAINTAINERCLEANFILES,# which is what we wantBUILT_SOURCES = \ swf4compiler.tab.c \ swf4compiler.tab.h \ swf5compiler.tab.c \ swf5compiler.tab.h \ lex.swf4.c \ lex.swf5.cnoinst_LTLIBRARIES = libactioncompiler.lalibactioncompiler_la_SOURCES = \ assembler.c \ compile.c \ listaction.c \ compileaction.c \ $(BUILT_SOURCES)noinst_HEADERS = \ assembler.h \ compile.hlibactioncompiler_la_LIBADD = # $(LEXLIB)AM_CPPFLAGS = -I$(srcdir)/..#noinst_PROGRAMS = test#test_SOURCES = main.c #test_LDADD = libactioncompiler.laEXTRA_DIST = \ swf4compiler.flex \ swf4compiler.y \ swf5compiler.flex \ swf5compiler.yCLEANFILES = \ swf4compiler.output \ $(BUILT_SOURCES)lex.swf4.c: $(srcdir)/swf4compiler.flex swf4compiler.tab.h $(LEX) -Pswf4 $(srcdir)/swf4compiler.flexlex.swf5.c: $(srcdir)/swf5compiler.flex swf5compiler.tab.h $(LEX) -Pswf5 $(srcdir)/swf5compiler.flexswf4compiler.tab.c: $(srcdir)/swf4compiler.y $(YACC) -p swf4 -b swf4compiler $(srcdir)/swf4compiler.yswf4compiler.tab.h: $(srcdir)/swf4compiler.y $(YACC) --defines $(DEBUG) -p swf4 -b swf4compiler $(srcdir)/swf4compiler.yswf5compiler.tab.c: $(srcdir)/swf5compiler.y $(YACC) -p swf5 -b swf5compiler $(srcdir)/swf5compiler.yswf5compiler.tab.h: $(srcdir)/swf5compiler.y $(YACC) --defines $(DEBUG) -p swf5 -b swf5compiler $(srcdir)/swf5compiler.y
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -