aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-07-31 17:23:04 +0000
committerMike Buland <eichlan@xagasoft.com>2006-07-31 17:23:04 +0000
commitb672fa69c4c98509f8ee251b87300e3fcbe6bdc8 (patch)
tree064212cec710fc5bfd5f2b75dd2a502ba9f66eba /src/main.cpp
parent9139f1df4cda80b91ab68e5de27e85eaa4c54682 (diff)
downloadbuild-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.tar.gz
build-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.tar.bz2
build-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.tar.xz
build-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.zip
We're almost to rule/command generation, then only a couple of steps before it
will do it all!
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 995009d..2e13b16 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4,10 +4,11 @@ int main()
4{ 4{
5 Builder bld; 5 Builder bld;
6 6
7 bld.load("congo"); 7 bld.load("build.conf");
8 8
9 printf("\n\n----------\nDebug dump\n----------\n"); 9 bld.build();
10 10
11 printf("\n\n----------\nDebug dump\n----------\n");
11 bld.debug(); 12 bld.debug();
12} 13}
13 14