diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 27 | ||||
-rw-r--r-- | doc/Makefile.buildlayout | 8 | ||||
-rw-r--r-- | doc/TODO | 2 |
3 files changed, 33 insertions, 4 deletions
diff --git a/doc/Makefile b/doc/Makefile index 3b3e51a3..e66a73db 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -64,6 +64,33 @@ pd_fileformat_install: $(MANUALS_DEST) curl http://student-kmt.hku.nl/%7Etjeerd/pd/pd_fileformat.html > \ $(MANUALS_DEST)/$(PD_FILEFORMAT_NAME)/Pd_File_Format.html +#------------------------------------------------------------------------------# +# EXTERNALS-HOWTO +EXTERNALS-HOWTO_NAME = Externals-HOWTO +externals-howto_install: $(MANUALS_DEST) + install -d $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME) + curl http://iem.kug.ac.at/pd/externals-HOWTO/pd-externals-HOWTO.pdf > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/pd-externals-HOWTO.pdf + curl http://iem.kug.ac.at/pd/externals-HOWTO/node1.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node1.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node2.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node2.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node3.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node3.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node4.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node5.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node5.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node6.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node6.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node7.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node7.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node8.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node8.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node9.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node9.html + curl http://iem.kug.ac.at/pd/externals-HOWTO/node10.html > \ + $(MANUALS_DEST)/$(EXTERNALS-HOWTO_NAME)/node10.html #------------------------------------------------------------------------------# diff --git a/doc/Makefile.buildlayout b/doc/Makefile.buildlayout index 921a7959..12df9df5 100644 --- a/doc/Makefile.buildlayout +++ b/doc/Makefile.buildlayout @@ -19,12 +19,12 @@ # # This file is currently located in these places: # abstractions -# externals/build +# extensions +# externals # packages # doc # # it will be going here too: -# extensions # gem # pd # @@ -65,10 +65,10 @@ endif # sources ABSTRACTIONS_SRC = $(SRC_ROOT_DIR)/abstractions DOC_SRC = $(SRC_ROOT_DIR)/doc +EXTENSIONS_SRC = $(SRC_ROOT_DIR)/extensions EXTERNALS_SRC = $(SRC_ROOT_DIR)/externals FLEXT_SRC = $(SRC_ROOT_DIR)/externals/grill/flext GEM_SRC = $(SRC_ROOT_DIR)/Gem -GEMLIBS_SRC = $(SRC_ROOT_DIR)/GemLibs PACKAGES_SRC = $(SRC_ROOT_DIR)/packages PD_SRC = $(SRC_ROOT_DIR)/pd SCRIPTS_SRC = $(SRC_ROOT_DIR)/scripts @@ -130,7 +130,7 @@ PD_VERSION = $(PD_MAJOR_VERSION).$(PD_MINOR_VERSION).$(PD_BUGFIX_VERSION) # release version for this distro -PACKAGE_VERSION = extended-RC4 +PACKAGE_VERSION = extended-RC5 PACKAGE_NAME = Pd-$(PD_VERSION)-$(PACKAGE_VERSION) @@ -1,4 +1,6 @@ +- add externals HOWTO to manuals/Pd + - create Makefile for Pd-extended build system - add pd-fileformat doc: http://student-kmt.hku.nl/%7Etjeerd/pd/pd_fileformat.html |