shithub: h264bsd

ref: c509757cc44c3bee93c02df77134df086a5084da
dir: /flex/Rakefile/

View raw version
SOURCES = FileList["../src/*.c", "main.c"]
AS_SOURCES = FileList["src/h264bsd/*.as"]

FLASCC = ENV["FLASCC"]
FLEX = ENV["FLEX"]
BASE_CFLAGS = ENV["BASE_CFLAGS"] || "-DFLASCC -O4 -I #{FLASCC}/usr/include"

def check_flascc()
    unless File.directory?("#{FLASCC}/usr/bin")
        fail("Couldn't locate FLASCC sdk directory, please invoke make with \"rake FLASCC=/path/to/FLASCC/sdk ...\"")
    end
end

def check_flex()
    unless File.directory?("#{FLEX}/bin")
        fail("Couldn't locate Flex sdk directory, please invoke make with \"rake FLEX=/path/to/flex ...\"")
    end
end

task :default => :test

task :swc => ["bin/h264bsd.swc"]

task :test => ["test/h264test.swf"]

directory "lib"

directory "bin"

file "lib/h264bsd_asm.swc" => ["lib"] + SOURCES do
    check_flascc()
    sh("\"#{FLASCC}/usr/bin/gcc\" #{BASE_CFLAGS} #{SOURCES} -emit-swc=h264bsd_asm -o lib/h264bsd_asm.swc");
end

file "bin/h264bsd.swc" => ["lib/h264bsd_asm.swc", "bin"] + AS_SOURCES do
    check_flex()
    sh("\"#{FLEX}/bin/compc\" -library-path=lib/h264bsd_asm.swc -source-path=src -include-sources=src -o bin/h264bsd.swc")
end

file "test/h264test.swf" => ["test/h264test.mxml", "bin/h264bsd.swc"] do
    check_flex()
    sh("\"#{FLEX}/bin/mxmlc\" -static-link-runtime-shared-libraries -compiler.omit-trace-statements=false -library-path+=bin/h264bsd.swc -library-path+=#{FLEX}/frameworks/libs/ -debug=true test/h264test.mxml -o test/h264test.swf")
end

task :clean do
    FileUtils.rm_rf(["lib", "bin"])
    FileUtils.rm_f(FileList["*.swc", "*.swf", "*.bc", "*.exe", "test/*.swf"])
end