diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-04 04:58:53 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-04 04:58:53 +0000 |
commit | 7d237bf606940cede753ae1c07a59c1ec24027bf (patch) | |
tree | 4366a0c71e09acb4e89556964d4e23f6e3fe7631 /externals/grill/flext/buildsys/nmake.mak | |
parent | 71b359c9eeb0071f6a1dfa2befb07a619b1e75c4 (diff) |
updated build system - some cleanups
updated for build system
updated build system for OSX
cleanups
updated build system
svn path=/trunk/; revision=2458
Diffstat (limited to 'externals/grill/flext/buildsys/nmake.mak')
-rw-r--r-- | externals/grill/flext/buildsys/nmake.mak | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/externals/grill/flext/buildsys/nmake.mak b/externals/grill/flext/buildsys/nmake.mak index 5fe434b4..78bd0ec0 100644 --- a/externals/grill/flext/buildsys/nmake.mak +++ b/externals/grill/flext/buildsys/nmake.mak @@ -8,23 +8,25 @@ ############################################### # package info -USRINFO=package.txt +!ifndef PKGINFO +PKGINFO=package.txt +!endif -!include $(USRINFO) +!include $(PKGINFO) ############################################### # check variables !ifndef BUILDCLASS -!error BUILDCLASS must be specified in $(USRINFO) +BUILDCLASS=ext !endif !ifndef BUILDMODE -!error BUILDMODE must be specified in $(USRINFO) +BUILDMODE=release !endif !ifndef BUILDTYPE -!error BUILDTYPE must be specified in $(USRINFO) +BUILDTYPE=single !endif ############################## @@ -44,7 +46,7 @@ SYSDEFAULT=$(BUILDPATH)$(PLATFORM)\$(RTSYS)\config-$(COMPILER).def OPTIONS=-f $(BUILDPATH)nmake-sub.mak \ PLATFORM=$(PLATFORM) RTSYS=$(RTSYS) COMPILER=$(COMPILER) \ - BUILDPATH=$(BUILDPATH) USRINFO=$(USRINFO) + BUILDPATH=$(BUILDPATH) PKGINFO=$(PKGINFO) BUILDCLASS=$(BUILDCLASS) ############################################### @@ -52,7 +54,7 @@ OPTIONS=-f $(BUILDPATH)nmake-sub.mak \ USRCONFIG=config.txt USRDEFAULT=$(BUILDDIR)\config-$(PLATFORM).def -USRMAKE=$(BUILDDIR)\makefile-$(PLATFORM)-$(COMPILER).inc +USRMAKE=$(BUILDDIR)\nmake-$(PLATFORM)-$(COMPILER).inc OPTIONS=$(OPTIONS) USRCONFIG=$(USRCONFIG) USRMAKE=$(USRMAKE) !endif |