Update of /cvsroot/pure-data/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6277
Modified Files: Makefile Log Message: fixed empty 3.audio.examples bug, it was caused by symlinks created by devsymlinks; added pd_fileformat.html from the web; built mac release 0.38.4-extendedRC4
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/doc/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 21 Nov 2005 15:27:40 -0000 1.7 --- Makefile 23 Nov 2005 15:44:24 -0000 1.8 *************** *** 31,35 **** chmod -R ugo-w $(DOCS_DEST)
! install: pd-msg_install pddp_install tutorials_install @echo " " @echo "doc install succeeded!" --- 31,35 ---- chmod -R ugo-w $(DOCS_DEST)
! install: pd_fileformat_install pd-msg_install pddp_install tutorials_install @echo " " @echo "doc install succeeded!" *************** *** 56,59 **** --- 56,70 ----
+ + #------------------------------------------------------------------------------# + # PD_FILEFORMAT + PD_FILEFORMAT_NAME = Pd + pd_fileformat_install: $(MANUALS_DEST) + install -d $(MANUALS_DEST)/$(PD_FILEFORMAT_NAME) + curl http://student-kmt.hku.nl/%7Etjeerd/pd/pd_fileformat.html > \ + $(MANUALS_DEST)/$(PD_FILEFORMAT_NAME)/Pd_File_Format.html + + + #------------------------------------------------------------------------------# # PDDP *************** *** 64,67 **** --- 75,79 ----
+ #------------------------------------------------------------------------------# # TUTORIALS *************** *** 85,98 **** # make the symlinks necessary to simulate the installed environment devsymlinks: ! ln -s $(PD_SRC)/doc/2.control.examples $(DOC_SRC)/2.control.examples ! ln -s $(PD_SRC)/doc/3.audio.examples $(DOC_SRC)/3.audio.examples # pd <= 0.38-4 has 4.fft.examples ! ln -s $(PD_SRC)/doc/4.fft.examples $(DOC_SRC)/4.fft.examples # pd > 0.38-4 has 4.data.structures ! ln -s $(PD_SRC)/doc/4.data.structures $(DOC_SRC)/4.data.structures ! ln -s $(PD_SRC)/doc/7.stuff $(DOC_SRC)/7.stuff ! ln -s $(PD_SRC)/doc/sound $(DOC_SRC)/sound # put the pddp support objects in the path ! ln -s $(ABSTRACTIONS_SRC)/pddp $(DOC_SRC)/pddp/pddp
#==============================================================================# --- 97,117 ---- # make the symlinks necessary to simulate the installed environment devsymlinks: ! test -e $(DOC_SRC)/2.control.examples || \ ! ln -s $(PD_SRC)/doc/2.control.examples $(DOC_SRC)/2.control.examples ! test -e $(DOC_SRC)/3.audio.examples || \ ! ln -s $(PD_SRC)/doc/3.audio.examples $(DOC_SRC)/3.audio.examples # pd <= 0.38-4 has 4.fft.examples ! test -e $(DOC_SRC)/4.fft.examples || \ ! ln -s $(PD_SRC)/doc/4.fft.examples $(DOC_SRC)/4.fft.examples # pd > 0.38-4 has 4.data.structures ! test -e $(DOC_SRC)/4.data.structures || \ ! ln -s $(PD_SRC)/doc/4.data.structures $(DOC_SRC)/4.data.structures ! test -e $(DOC_SRC)/7.stuff || \ ! ln -s $(PD_SRC)/doc/7.stuff $(DOC_SRC)/7.stuff ! test -e $(DOC_SRC)/sound || \ ! ln -s $(PD_SRC)/doc/sound $(DOC_SRC)/sound # put the pddp support objects in the path ! test -e $(DOC_SRC)/pddp/pddp || \ ! ln -s $(ABSTRACTIONS_SRC)/pddp $(DOC_SRC)/pddp/pddp
#==============================================================================#