bdberl/Rakefile

36 lines
797 B
Ruby

load "base.rake"
C_SRCS = FileList["c_src/*.c"]
C_OBJS = C_SRCS.pathmap("%X.o")
CLEAN.include %w( c_src/*.o priv/*.so )
CLOBBER.include %w( c_src/system )
directory 'c_src'
DB_LIB = "c_src/system/lib/libdb.a"
DRIVER = "priv/bdberl_drv.so"
file DB_LIB do
sh "cd c_src && ./buildlib.sh 2>&1"
end
file DRIVER => [:compile_c] do
puts "linking priv/#{DRIVER}..."
sh "gcc -g #{erts_link_cflags()} c_src/*.o c_src/system/lib/libdb-*.a -o #{DRIVER}", :verbose => false
end
rule ".o" => ["%X.c", "%X.h"] do |t|
puts "compiling #{t.source}..."
sh "gcc -g -c -Wall -Werror -Ic_src/system/include -I#{erts_dir()}/include #{t.source} -o #{t.name}", :verbose => false
end
task :compile_c => ['c_src'] + C_OBJS
task :compile => [DB_LIB, DRIVER]
task :test do
run_tests "test", "+A10"
end