📄 makefile
字号:
CC= gccCXX= g++OPTIMIZE=-g -O3# Comment out the following line if you use egcs :CXXFLAGS=$(OPTIMIZE) $(ALLCFLAGS) $(CXXFLAGS_$(CC)) -UNDEBUGCXXFLAGS_gcc= -Wall -fno-rtti -fno-exceptionsifeq ($(RGB555),Y)CXXFLAGS += -DRGB555=1endifCCC= $(CXX)CCFLAGS= $(CXXFLAGS)INCLUDES= adpcm.h cxform.h graphic.h script.h sqrt.h\ bitmap.h displaylist.h matrix.h shape.h swf.h\ button.h flash.h program.h sound.h text.h\ character.h font.h rect.h sprite.h movie.h\ mp3.hSWFOBJS=\ flash.o \ character.o \ shape.o \ button.o \ program.o \ bitmap.o \ displaylist.o \ font.o \ graphic.o \ text.o \ matrix.o \ script.o \ sound.o \ sprite.o \ movie.o \ cxform.o \ adpcm.o \ mp3.o \ sqrt.o \ graphic16.o \ graphic24.o \ graphic32.o# bitstream.o# dump.oall: libflash.alibflash.a: $(SWFOBJS) ar rcs $@ $(SWFOBJS)$(SWFOBJS): $(INCLUDES)clean: rm -f $(SWFOBJS) *~ libflash.a.PHONY: plugin jpeg all
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -