diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-09-01 23:29:52 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-09-01 23:29:52 +0000 |
commit | ca53e316258e811cd0e13123ceaede9089804b89 (patch) | |
tree | 2ff54ec70bfef459abc6efc885b1b88eb05e5713 /externals/grill/flext/buildsys | |
parent | a3c221da7d4508af22adc78654f5a5bda0529027 (diff) |
fixed severe Altivec bug
svn path=/trunk/; revision=3473
Diffstat (limited to 'externals/grill/flext/buildsys')
-rw-r--r-- | externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc | 4 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc b/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc index d5057ed3..2f277625 100644 --- a/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc +++ b/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc @@ -61,6 +61,10 @@ endif endif chmod 755 $@ +ifdef TARGETPOST +$(TARGET) :: $(TARGETPOST) +endif + ############################################## _clean_: 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 de5afd04..3808d6bb 100644 --- a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc +++ b/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc @@ -10,3 +10,9 @@ INSTTARGET=$(OBJPATH)/$(OUTNAME).$(EXT) TARGETPATH=$(INSTTARGET)/Contents/MacOS # file inside bundle (build site) TARGET=$(TARGETPATH)/$(OUTNAME) + +# post build target +TARGETPOST=$(INSTTARGET)/Contents/Pkginfo + +$(INSTTARGET)/Contents/Pkginfo: + echo "iLaX????" >> $@ |