diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-22 07:58:35 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-22 07:58:35 +0000 |
commit | 5fdbd2566f8f280606006d35cad9d205bf540fa0 (patch) | |
tree | fbdb3207c48c1ece65daebaf5ba73fe56f5b328f /Makefile.common | |
parent | 99cea6d07c788dbf4655f92ac5771bb204ed5f0c (diff) |
added MSP-style MacOS X package
svn path=/trunk/externals/miXed/; revision=895
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 52694d3..14624ba 100644 --- a/Makefile.common +++ b/Makefile.common @@ -319,7 +319,7 @@ Makefile.deps: -include Makefile.deps # added by Hans-Christoph Steiner <hans@eds.org> -# to generate MacOS X package +# to generate MacOS X packages darwin_altpackage: all test -d ../installroot/Help || mkdir -p ../installroot/Help -cp ../test/cyclone/* ../installroot/Help @@ -329,3 +329,13 @@ darwin_altpackage: all test -d ../installroot/Externals || mkdir -p ../installroot/Externals install -m644 ../bin/*.pd_darwin --group=admin ../installroot/Externals open darwin_altpackage.pmsp + +darwin_package: all + test -d ../installroot/pd/doc/5.reference || mkdir -p ../installroot/pd/doc/5.reference + -cp ../test/cyclone/* ../installroot/pd/doc/5.reference + test -d ../installroot/Resources || mkdir -p ../installroot/Resources + cp ../LICENSE.txt ../installroot/Resources/License.txt + cp Welcome.txt ../installroot/Resources/ + test -d ../installroot/pd/extra || mkdir -p ../installroot/pd/extra + install -m644 ../bin/*.pd_darwin --group=admin ../installroot/pd/extra + open darwin_package.pmsp |