aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/buildsys/targets.inc
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-01-03 05:00:31 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-01-03 05:00:31 +0000
commit1611d50c03d8f79560ffc3bc63c268894f411abc (patch)
tree33a751fe81ef62e3bb4104f82132d3bc43efcaa7 /externals/grill/flext/buildsys/targets.inc
parent7873938d18daf4a94ca77eeb970457f89e679374 (diff)
updated make system
build system for OSX simplified make system reconsidered flext::buffer:Update added object construction and destruction flags updated build system svn path=/trunk/; revision=2447
Diffstat (limited to 'externals/grill/flext/buildsys/targets.inc')
-rw-r--r--externals/grill/flext/buildsys/targets.inc77
1 files changed, 77 insertions, 0 deletions
diff --git a/externals/grill/flext/buildsys/targets.inc b/externals/grill/flext/buildsys/targets.inc
new file mode 100644
index 00000000..0372392c
--- /dev/null
+++ b/externals/grill/flext/buildsys/targets.inc
@@ -0,0 +1,77 @@
+all: build-default-default
+
+clean: clean-default-default
+
+install: install-default-default
+
+###########################################################
+
+build-default-default: build-$(TARGETMODE)-$(TARGETTYPE)
+
+install-default-default: install-$(TARGETMODE)-$(TARGETTYPE)
+
+clean-default-default: clean-$(TARGETMODE)-$(TARGETTYPE)
+
+###########################################################
+
+build-release-single: config
+ $(MAKE) $(OPTIONS) _build_
+
+build-debug-single: config
+ $(MAKE) $(OPTIONS) DEBUG=1 _build_
+
+build-release-multi: config
+ $(MAKE) $(OPTIONS) THREADED=1 _build_
+
+build-debug-multi: config
+ $(MAKE) $(OPTIONS) THREADED=1 DEBUG=1 _build_
+
+build-release-shared: config
+ $(MAKE) $(OPTIONS) SHARED=1 _build_
+
+build-debug-shared: config
+ $(MAKE) $(OPTIONS) SHARED=1 DEBUG=1 _build_
+
+###########################################################
+
+install-release-single:
+ $(MAKE) $(OPTIONS) _install_
+
+install-debug-single:
+ $(MAKE) $(OPTIONS) DEBUG=1 _install_
+
+install-release-multi:
+ $(MAKE) $(OPTIONS) THREADED=1 _install_
+
+install-debug-multi:
+ $(MAKE) $(OPTIONS) THREADED=1 DEBUG=1 _install_
+
+install-release-shared:
+ $(MAKE) $(OPTIONS) SHARED=1 _install_
+
+install-debug-shared:
+ $(MAKE) $(OPTIONS) SHARED=1 DEBUG=1 _install_
+
+###########################################################
+
+clean-release-single:
+ $(MAKE) $(OPTIONS) _clean_
+
+clean-debug-single:
+ $(MAKE) $(OPTIONS) DEBUG=1 _clean_
+
+clean-release-multi:
+ $(MAKE) $(OPTIONS) THREADED=1 _clean_
+
+clean-debug-multi:
+ $(MAKE) $(OPTIONS) THREADED=1 DEBUG=1 _clean_
+
+clean-release-shared:
+ $(MAKE) $(OPTIONS) SHARED=1 _clean_
+
+clean-debug-shared:
+ $(MAKE) $(OPTIONS) SHARED=1 DEBUG=1 _clean_
+
+###########################################################
+
+config: $(USRMAKE) $(SYSCONFIG) $(USRCONFIG)