aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/build/nmake.mak
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/build/nmake.mak')
-rw-r--r--externals/grill/flext/build/nmake.mak79
1 files changed, 0 insertions, 79 deletions
diff --git a/externals/grill/flext/build/nmake.mak b/externals/grill/flext/build/nmake.mak
deleted file mode 100644
index 35b3de0c..00000000
--- a/externals/grill/flext/build/nmake.mak
+++ /dev/null
@@ -1,79 +0,0 @@
-# required settings:
-#
-# PLATFORM - win/mac/lnx
-# RTSYS - pd/max
-# COMPILER - msvc/gcc/mingw/cygwin
-# BUILDPATH including trailing \
-
-# package info
-!include build\package.txt
-
-SYSCONFIG=$(BUILDPATH)config-$(PLATFORM)-$(RTSYS)-$(COMPILER).txt
-SYSDEFAULT=$(BUILDPATH)$(PLATFORM)\$(RTSYS)\config-$(COMPILER).def
-
-
-OPTIONS=-f $(BUILDPATH)nmake-sub.mak \
- PLATFORM=$(PLATFORM) RTSYS=$(RTSYS) COMPILER=$(COMPILER) \
- BUILDPATH=$(BUILDPATH)
-
-
-!ifdef HAVECONFIG
-USRCONFIG=config.txt
-USRDEFAULT=build\config-$(PLATFORM).def
-OPTIONS=$(OPTIONS) USRCONFIG=$(USRCONFIG)
-!endif
-
-!ifdef HAVEMAKE
-USRMAKE=build\makefile-$(PLATFORM)-$(COMPILER).inc
-OPTIONS=$(OPTIONS) USRMAKE=$(USRMAKE)
-!endif
-
-
-all: config
- $(MAKE) $(OPTIONS) all
-
-all-debug: config
- $(MAKE) $(OPTIONS) DEBUG=1 $@
-
-all-shared: config
- $(MAKE) $(OPTIONS) SHARED=1 $@
-
-all-shared-debug: config
- $(MAKE) $(OPTIONS) SHARED=1 DEBUG=1 $@
-
-clean install:
- $(MAKE) $(OPTIONS) $@
-
-
-config: $(USRMAKE) $(SYSCONFIG) $(USRCONFIG)
-
-
-.precious: $(SYSCONFIG) $(USRCONFIG)
-
-$(SYSCONFIG): $(SYSDEFAULT)
- @copy $** $@
- @echo -------------------------------------------------------------------------
- @echo A default system configuration file has been created.
- @echo Please edit $(SYSCONFIG)
- @echo to match your platform and start again.
- @echo -------------------------------------------------------------------------
- @exit 1
-
-!ifdef HAVECONFIG
-$(USRCONFIG): $(USRDEFAULT)
- @copy $** $@
- @echo -------------------------------------------------------------------------
- @echo A default package configuration file has been created.
- @echo Please edit $(USRCONFIG) and start again.
- @echo -------------------------------------------------------------------------
- @exit 1
-!endif
-
-!ifdef HAVEMAKE
-$(USRMAKE):
- @echo -------------------------------------------------------------------------
- @echo Your combination of platform, system and compiler is not supported yet.
- @echo Required file: $(USRMAKE)
- @echo -------------------------------------------------------------------------
- @exit 1
-!endif