From 5adc0aae2b9041f217b6398fa4654612b5d1d3ec Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Mon, 31 Mar 2014 16:31:01 -0400 Subject: [PATCH] Added buildfile to use with 'spade' --- Buildfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Buildfile diff --git a/Buildfile b/Buildfile new file mode 100644 index 0000000..87fa45a --- /dev/null +++ b/Buildfile @@ -0,0 +1,30 @@ +; Build Environment +;------------------------------------------------------------------------------ +(environment BuildEnv + '("CPPPATH" . ("source/libsof/")) + '("LIBPATH" . ("build/"))) + +; Targets and Tasks +;------------------------------------------------------------------------------ +(with-env BuildEnv + (build "StaticLib" "build/sof" + (glob "source/libsof/*.c")) + + (build "Program" "build/slvm" + (glob "source/slvm/*.c")) + + (build "Program" "build/readsof" + (glob "source/readsof/*.c") + '("LIBS" . ("sof"))) + (depends "build/readsof" '("build/sof")) + + (build "Program" "build/slc" + (glob "source/slc/*.scm")) + + (build "Program" "build/slpkg" + (glob "source/slpkg/*.scm")) + + (build "Program" "build/slas" + (glob "source/slas/*.scm")) +) + -- 2.52.0