aboutsummaryrefslogtreecommitdiff
path: root/externals/build/doc/makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-04-26 04:41:12 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-04-26 04:41:12 +0000
commit93dc8e09f7c76f76e4d5e35a74ce6042aa161ca9 (patch)
tree1007ebb9639ff316bb8ee58e3da3f07292f36d9c /externals/build/doc/makefile
parent08c72e91601c58af13dae0ba9b4ed0eb93851634 (diff)
make clean target more specific; added zexy help files here since most of zexy is now built by externals/build/*; added pmpd examples in their own directory
svn path=/trunk/; revision=2820
Diffstat (limited to 'externals/build/doc/makefile')
-rw-r--r--externals/build/doc/makefile19
1 files changed, 13 insertions, 6 deletions
diff --git a/externals/build/doc/makefile b/externals/build/doc/makefile
index d7ca2f6c..5266c952 100644
--- a/externals/build/doc/makefile
+++ b/externals/build/doc/makefile
@@ -9,7 +9,8 @@ DOC_DIR = .
all:
#----------------------------------------------------------------------------
# all standard objs' help files
- cp -p ../../OSCx/doc/*.pd \
+ install -p -m0644 \
+ ../../OSCx/doc/*.pd \
../../control/*/*.pd \
../../signal/*/*.pd \
../../aenv~/*.pd \
@@ -56,15 +57,21 @@ all:
# IEMlib uses its own dir and since its not maintained in CVS
# its best not to change the objects
install -d -m0755 $(DOC_DIR)/iemhelp
- cp -p ../../iemlib/iemhelp/*.* $(DOC_DIR)/iemhelp
+ install -p -m0644 ../../iemlib/iemhelp/*.* $(DOC_DIR)/iemhelp
#----------------------------------------------------------------------------
+# PMDP examples
+ install -d -m0755 $(DOC_DIR)/pmpd
# pmpd exemples files has to go in an other directory
- cp -Rp ../../pmpd/exemples $(DOC_DIR)/pmpd
+ install -p -m0644 ../../pmpd/exemples/*.pd $(DOC_DIR)/pmpd
# pmpd documentation
cp -Rp ../../pmpd/doc $(DOC_DIR)/pmpd/doc
#----------------------------------------------------------------------------
# zexy uses its own dir
- cp -Rp ../../zexy/examples $(DOC_DIR)/zexy
+ install -d -m0755 $(DOC_DIR)/zexy
+ install -p -m0444 ../../zexy/zexy.pd $(DOC_DIR)
+ install -p -m0644 ../../zexy/examples/*.* $(DOC_DIR)/zexy
+
+
#----------------------------------------------------------------------------
# remove help files for objects that are not included due to conflicts, etc.
#
@@ -74,8 +81,8 @@ all:
rm help-split.pd
#----------------------------------------------------------------------------
# no need to have pd patches executable or writable
- chmod a-x *.pd
- chmod -R a-w *
+ chmod a-x *.pd */*.pd
+ chmod a-w ????*/*.* *.pd *.txt
#----------------------------------------------------------------------------