aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorN.N. <david_merrill@users.sourceforge.net>2007-08-25 21:32:04 +0000
committerN.N. <david_merrill@users.sourceforge.net>2007-08-25 21:32:04 +0000
commitb40c0662397733c2843c80eee5cce1cff388488b (patch)
tree7bce375bc527b35eb18f049f1c0099ab10cf06b5
parentfae7ba0f39467caa212e823d06dbda784a469297 (diff)
Made "make install" in Makefile more complete - copies both newly compiled libraries, and helpfiles now
svn path=/trunk/externals/input_noticer/; revision=8690
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 215b2a7..2c55997 100644
--- a/Makefile
+++ b/Makefile
@@ -6,11 +6,11 @@ clean: ; rm -f *.pd_linux *.o *~
# installs all compiled externals.
# you'll want to change this to match where your externals live
-install: ; sudo cp *.pd_linux /usr/local/lib/pd/extra
+install: ; sudo cp *.pd_linux /usr/local/lib/pd/extra/ ; sudo cp *help.pd /usr/local/lib/pd/doc/5.reference/
# installs the input_noticer
# you'll want to change this to match where your externals live
-install_noticer: ; cp input_noticer.pd_linux /usr/local/lib/pd/extra ; cp input_noticer-help.pd /usr/local/lib/pd/doc/5.reference/
+install_noticer: ; sudo cp input_noticer.pd_linux /usr/local/lib/pd/extra ; sudo cp input_noticer-help.pd /usr/local/lib/pd/doc/5.reference/
# ----------------------- LINUX i386 -----------------------