From df5286fe3bca619beb4771da1ffa8ace9613e9e5 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 18 Aug 2006 17:21:02 +0000 Subject: Gutted, deleted almost all the source, too many changes to keep it around, we'll see what happens next. --- build.conf | 47 +++++++++++++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 18 deletions(-) (limited to 'build.conf') diff --git a/build.conf b/build.conf index dc847c8..8bbe679 100644 --- a/build.conf +++ b/build.conf @@ -1,27 +1,38 @@ -# This is a build file for build +default action: check "build", check "cleanup" -default action: check build -"clean" action: clean build +["build", "cleanup"]: + rule "exe", + target file, + set "CXXFLAGS" = "-lBob", + input [files("src/{target}"), files("src/shared")] -create file build from files in src using rule exe +[directoryName("src/tests")] filter /src\/tests/(.*)/tests\/{re:1}/: + rule "exe", + target prefix "tests/", + target file, + input files("src/tests/{target}") -set CXXFLAGS += "-ggdb" +[directories("src/tests"), aoeua]: + rule "exe", + target file, + input files("src/{target}") -set CXXFLAGS += "-Ilibbu++/src" -set LDFLAGS += "-Llibbu++ -lbu++" +"build": + input [files("src"), "boy.cpp"] filter /.*\.cpp$/, + input filter /.*\.cpp$/, + requires ["bob.cpp", "libbuild.a", "libbu++/libbu++.a"] -build requires "libbu++/libbu++.a" +"bob.cpp": set "aoeu" = "food", requires "bob.bastard" -/(.*)\.o$/ requires from command "g++ {CXXFLAGS} -M {re:1}.c*" +rule "exe" + matches /(.*)\.o$/, + input filter toSpaces(), + perform command("stuff") -rule exe matches all /(.*)\.o$/ perform command ... - "g++ {match} {LDFLAGS} -o {target}" +rule "cpp": + matches /(.*)\.cpp$/, + produces "{re:1}.o", + requires commandToList( make, "g++ -M {match}"), + perform command("stuff") -rule cpp matches one /(.*)\.c(pp)?$/ produces "{re:1}.o" perform command ... - "g++ {CXXFLAGS} -c -o {target} {match}" -rule bison matches one /(.*)\.y$/ produces "{re:1}.tab.c", "{re:1}.tab.h", ... - "{re:1}.output" perform command "bison -v -b{re:1} {match}" - -rule flex matches one /(.*)\.l$/ produces "{re:1}.yy.c" perform ... - command "flex --bison-bridge --bison-locations -o {target} {match}" -- cgit v1.2.3