From 4102382de738a843b4acd10172f14489483227a1 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 21 Sep 2006 20:11:25 +0000 Subject: 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... --- Buildfile | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Buildfile (limited to 'Buildfile') diff --git a/Buildfile b/Buildfile deleted file mode 100644 index 2732847..0000000 --- a/Buildfile +++ /dev/null @@ -1,31 +0,0 @@ -// Reference Buildfile by Mike Buland -// Comments can be C++ style or bash style right now, no C style /* */ - -// Recognized file types will be built using the default programs on each -// system, each will get a target and be built with as much dependency tracking -// as possible. - -// This is the default target, build with no params will always try to build -// the all target, unless your Buildfile specifies something a little more -// interesting. Specifying phony as a parameter means that this target builds -// every call no matter what. -target( all, phony ) -{ - build( build ); -} - -target( build ) -{ - type = executable; - linker = c++; - output = build; - - if( isDebug() == true ) - { - addParam( CXXFLAGS, "-ggdb") - addParam( CFLAGS, "-ggdb") - } - - usesDir( src ); -} - -- cgit v1.2.3