diff options
author | Adam Lindsay <adamlindsay@users.sourceforge.net> | 2003-03-09 23:47:28 +0000 |
---|---|---|
committer | Adam Lindsay <adamlindsay@users.sourceforge.net> | 2003-03-09 23:47:28 +0000 |
commit | 47bfb35eca491de43d40d82311c0d425da24b369 (patch) | |
tree | 3fc8db514950467acc25962ceb1976077dec7303 /src | |
parent | 4503d2a4c9e406ac50cbbca51b2b83d7fa7b6d99 (diff) |
some makefile.darwin changes to enable package building
svn path=/trunk/externals/zexy/; revision=463
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile.darwin | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/makefile.darwin b/src/makefile.darwin index a673959..797d87b 100644 --- a/src/makefile.darwin +++ b/src/makefile.darwin @@ -89,3 +89,18 @@ install: installdocs installdocs:
install -d $(PD_DIR)/doc/5.reference/zexy
install -m644 ../examples/*.* $(PD_DIR)/doc/5.reference/zexy
+
+darwin_package: all
+ test -d ../installroot/doc/5.reference || mkdir -p ../installroot/doc/5.reference
+ -cp ../examples/* ../installroot/doc/5.reference
+ test -d ../installroot/extra || mkdir -p ../installroot/extra
+ install -m644 *.pd_darwin ../installroot/extra
+ open ../darwin_package.pmsp
+
+darwin_altpackage: all
+ test -d ../installroot/Help || mkdir -p ../installroot/Help
+ -cp ../examples/* ../installroot/Help
+ test -d ../installroot/Externals || mkdir -p ../installroot/Externals
+ install -m644 *.pd_darwin ../installroot/Externals
+ open ../darwin_altpackage.pmsp
+
|