ref: 823d620f8315c94db90e029987e4a12771ed79f2
dir: /flex/Makefile/
SOURCES = $(wildcard ../src/*.c) main.c FLASCC:=X FLEX:=X BASE_CFLAGS:=-DFLASCC -O4 -I $(FLASCC)/usr/include swc: lib/h264bsd_asm.swc test: test/h264test.swf lib/h264bsd_asm.swc: $(SOURCES) @if [ -d $(FLASCC)/usr/bin ] ; then true ; \ else echo "Couldn't locate FLASCC sdk directory, please invoke make with \"make FLASCC=/path/to/FLASCC/sdk ...\"" ; exit 1 ; \ fi mkdir -p lib "$(FLASCC)/usr/bin/gcc" $(BASE_CFLAGS) $(SOURCES) -emit-swc=h264bsd_asm -o lib/h264bsd_asm.swc test/h264test.swf: test/h264test.as lib/h264bsd_asm.swc @if [ -d "$(FLEX)/bin" ] ; then true ; \ else echo "Couldn't locate Flex sdk directory, please invoke make with \"make FLEX=/path/to/flex ...\"" ; exit 1 ; \ fi "$(FLEX)/bin/mxmlc" -static-link-runtime-shared-libraries -compiler.omit-trace-statements=false -library-path=lib/h264bsd_asm.swc -debug=true test/h264test.as -o test/h264test.swf clean: rm -f test/*.swf lib/*.swc *.bc *.exe