aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/buildsys/mac/max
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-04-10 22:22:40 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-04-10 22:22:40 +0000
commitce10fc0a7c760656a3577068e1457043a3d6ffd1 (patch)
tree4cb9186181c5e0dc705f6b39b6d34bd5ab0ca5ea /externals/grill/flext/buildsys/mac/max
parentd2744cd4b8d9bef38086526e8e487bafed1fad84 (diff)
fixed library versioning
updates for build system small fix updates to build system fix tutorial compilation install build system and a convenient script first steps to flext framework for OSX svn path=/trunk/; revision=2707
Diffstat (limited to 'externals/grill/flext/buildsys/mac/max')
-rw-r--r--externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc3
-rw-r--r--externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc12
2 files changed, 13 insertions, 2 deletions
diff --git a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc b/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc
index 85e01a75..de5afd04 100644
--- a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc
+++ b/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc
@@ -4,6 +4,9 @@ EXT=mxo
OBJPATH=$(OUTPATH)/$(OUTSUB)
+# bundle name (build site)
INSTTARGET=$(OBJPATH)/$(OUTNAME).$(EXT)
+# folder inside bundle (build site)
TARGETPATH=$(INSTTARGET)/Contents/MacOS
+# file inside bundle (build site)
TARGET=$(TARGETPATH)/$(OUTNAME)
diff --git a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc b/externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc
index b99cfec7..531d92b1 100644
--- a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc
+++ b/externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc
@@ -7,8 +7,16 @@ endif
##############################################
OBJPATH=$(OUTPATH)/$(OUTSUB)
-
TARGETPATH=$(OBJPATH)
-TARGET=$(TARGETPATH)/$(OUTNAME).$(EXT)
+
+TARGETNAME=$(OUTNAME).$(EXT)
+ifdef PKGVERSION
+VERNAME=$(OUTNAME).$(PKGVERSION).$(EXT)
+TARGET=$(TARGETPATH)/$(VERNAME)
+else
+TARGET=$(TARGETPATH)/$(TARGETNAME)
+endif
+
INSTTARGET=$(TARGET)
+