diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2006-09-21 20:11:25 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2006-09-21 20:11:25 +0000 |
| commit | 4102382de738a843b4acd10172f14489483227a1 (patch) | |
| tree | 51ae701062336e599de3c07188f53838e8d4dc88 /Buildfile | |
| parent | 23e4ce8f1b211b388be7533b684dabab193be587 (diff) | |
| download | build-4102382de738a843b4acd10172f14489483227a1.tar.gz build-4102382de738a843b4acd10172f14489483227a1.tar.bz2 build-4102382de738a843b4acd10172f14489483227a1.tar.xz build-4102382de738a843b4acd10172f14489483227a1.zip | |
We have a working Makefile, and no more Buildfile....I'll make a more general
Makefile later that I won't have to keep updating...
Diffstat (limited to 'Buildfile')
| -rw-r--r-- | Buildfile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Buildfile b/Buildfile deleted file mode 100644 index 2732847..0000000 --- a/Buildfile +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | // Reference Buildfile by Mike Buland | ||
| 2 | // Comments can be C++ style or bash style right now, no C style /* */ | ||
| 3 | |||
| 4 | // Recognized file types will be built using the default programs on each | ||
| 5 | // system, each will get a target and be built with as much dependency tracking | ||
| 6 | // as possible. | ||
| 7 | |||
| 8 | // This is the default target, build with no params will always try to build | ||
| 9 | // the all target, unless your Buildfile specifies something a little more | ||
| 10 | // interesting. Specifying phony as a parameter means that this target builds | ||
| 11 | // every call no matter what. | ||
| 12 | target( all, phony ) | ||
| 13 | { | ||
| 14 | build( build ); | ||
| 15 | } | ||
| 16 | |||
| 17 | target( build ) | ||
| 18 | { | ||
| 19 | type = executable; | ||
| 20 | linker = c++; | ||
| 21 | output = build; | ||
| 22 | |||
| 23 | if( isDebug() == true ) | ||
| 24 | { | ||
| 25 | addParam( CXXFLAGS, "-ggdb") | ||
| 26 | addParam( CFLAGS, "-ggdb") | ||
| 27 | } | ||
| 28 | |||
| 29 | usesDir( src ); | ||
| 30 | } | ||
| 31 | |||
