Update of /cvsroot/pure-data/packages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6867
Modified Files: Makefile Makefile.buildlayout README TODO Log Message:
Lots of changes, got the first complete(-ish) build with the new extended build system. I left as much of the old functionality in place as possible, definitely were it was being used. But there are some changes that break backwards compatibility, thought they should be noticed by few, and be easy to fix going forward.
Some highlights:
- centralized patch system (packages/patches with targets patch_pd and unpatch_pd)
- easily redirected builds, using INSTALL_PREFIX and all of the *_DEST variables. This makes building packages like Pd.app, .deb, .rpm, etc. much easier.
- libdir format: basically a libdir is a directory that has both the objects and the help files together in one folder. It can be added using -lib or the StartUp preferences, or you can access them via geiger namespaces, i.e. [mylibrary/myobject].
- special characters allow in setup function/file names for objects. This makes objects like [||~] possible without having to be in a library. Now they can be either .pd files or individual .pd_darwin files (thanks IOhannes for the patch).
Index: README =================================================================== RCS file: /cvsroot/pure-data/packages/README,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README 11 Apr 2004 19:27:30 -0000 1.1 --- README 21 Nov 2005 04:37:41 -0000 1.2 *************** *** 1,3 **** --- 1,18 ----
+ Pd-extended build system + ======================== + + Check out this webpage for full documentation: + + http://puredata.org/docs/developer/build + + While you are there, check out the rest of them: + + http://puredata.org/docs/developer/ + + + Adding specific package types + ============================= + This directory is for package builders for various platforms. The directories here should be named using the following format:
Index: Makefile.buildlayout =================================================================== RCS file: /cvsroot/pure-data/packages/Makefile.buildlayout,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile.buildlayout 18 Nov 2005 19:49:37 -0000 1.4 --- Makefile.buildlayout 21 Nov 2005 04:37:41 -0000 1.5 *************** *** 71,74 **** --- 71,75 ---- 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 *************** *** 77,81 **** --- 78,86 ---- # destinations APPLICATIONS_DEST = $(DOCS_DEST)/examples + BIN_DEST = $(INSTALL_PREFIX)/bin DOCS_DEST = $(INSTALL_PREFIX)/doc + INCLUDE_DEST = $(INSTALL_PREFIX)/include + LIB_DEST = $(INSTALL_PREFIX)/lib + MAN_DEST = $(INSTALL_PREFIX)/man OBJECTS_DEST = $(INSTALL_PREFIX)/extra HELP_DEST = $(DOCS_DEST)/5.reference *************** *** 147,151 **** -rm $(OBJECTS_DEST)/*/*/*.pd -rm $(OBJECTS_DEST)/*/*.pd ! -rm $(OBJECTS_DEST)/*.pd -rm $(OBJECTS_DEST)/*/*/*.$(EXTENSION) -rm $(OBJECTS_DEST)/*/*.$(EXTENSION) --- 152,156 ---- -rm $(OBJECTS_DEST)/*/*/*.pd -rm $(OBJECTS_DEST)/*/*.pd ! -rm $(OBJECTS_DEST)/*.pd -rm $(OBJECTS_DEST)/*/*/*.$(EXTENSION) -rm $(OBJECTS_DEST)/*/*.$(EXTENSION)
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile 18 Nov 2005 18:05:53 -0000 1.6 --- Makefile 21 Nov 2005 04:37:41 -0000 1.7 *************** *** 3,7 **** # Centralized cross-platform build system # ! # see README for instructions hans@at.or.at # #==============================================================================# --- 3,8 ---- # Centralized cross-platform build system # ! # see for instructions: http://puredata.org/docs/developer/build ! # hans@at.or.at # #==============================================================================# *************** *** 15,23 ****
# default target ! all: abstractions doc externals flext gem pd @echo "Complete build succeeded!"
include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
# these are sent to all of the various Makefiles so that they all copy their # output to the same directory tree --- 16,105 ----
# default target ! all: pd abstractions doc externals ! #all: pd abstractions doc externals flext gem @echo "Complete build succeeded!"
include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
+ #==============================================================================# + # + # GET VERSIONS FOR RELEVANT SOFTWARE + # + #==============================================================================# + + + PD_MAJOR_VERSION := $(shell /usr/bin/grep 'Pd version' $(PD_SRC)/src/s_main.c | \ + sed 's/char pd_version[] = "Pd version ([0-9]).[0-9]*[. TES]*[0-9]*[0-9extndRC.-]*\n";/\1/') + PD_MINOR_VERSION := $(shell /usr/bin/grep 'Pd version' $(PD_SRC)/src/s_main.c | \ + sed 's/char pd_version[] = "Pd version [0-9].([0-9]*)[. TES]*([0-9]*)[0-9extndRC.-]*\n";/\1/') + PD_BUGFIX_VERSION := $(shell /usr/bin/grep 'Pd version' $(PD_SRC)/src/s_main.c | \ + sed 's/char pd_version[] = "Pd version [0-9].[0-9]*[. TES]*([0-9]*)[0-9extndRC.-]*\n";/\1/') + PD_VERSION = $(PD_MAJOR_VERSION).$(PD_MINOR_VERSION)-$(PD_BUGFIX_VERSION) + + + # release version for this distro + PACKAGE_VERSION = extended-RC3 + PACKAGE_NAME = Pd-$(PD_VERSION)-$(PACKAGE_VERSION) + DMG_NAME = $(PACKAGE_NAME) + + + CYCLONE_MAJOR_VERSION := $(shell grep CYCLONE_VERSION \ + $(EXTERNALS_SRC)/miXed/cyclone/build_counter | cut -d ' ' -f 3 | \ + cut -d '"' -f 2) + CYCLONE_RELEASE := $(shell grep CYCLONE_RELEASE \ + $(EXTERNALS_SRC)/miXed/cyclone/build_counter | cut -d ' ' -f 3 | \ + cut -d '"' -f 2) + CYCLONE_BUILD := $(shell grep CYCLONE_BUILD \ + $(EXTERNALS_SRC)/miXed/cyclone/build_counter | cut -d ' ' -f 3 | \ + cut -d '"' -f 2) + CYCLONE_VERSION := $(CYCLONE_MAJOR_VERSION) $(CYCLONE_RELEASE) $(CYCLONE_BUILD) + + + FLEXT_MAJOR_VERSION := $(shell grep FLEXTMAJOR \ + $(EXTERNALS_SRC)/grill/flext/buildsys/version.inc | cut -d '=' -f2) + FLEXT_MINOR_VERSION := $(shell grep FLEXTMINOR \ + $(EXTERNALS_SRC)/grill/flext/buildsys/version.inc | cut -d '=' -f2) + FLEXT_MICRO_VERSION := $(shell grep FLEXTMICRO \ + $(EXTERNALS_SRC)/grill/flext/buildsys/version.inc | cut -d '=' -f2) + FLEXT_VERSION := $(FLEXT_MAJOR_VERSION).$(FLEXT_MINOR_VERSION).$(FLEXT_MICRO_VERSION) + + + GEM_VERSION := $(shell grep "GEM_VERSION" $(GEM_SRC)/src/Base/GemVersion.h | \ + cut -d '"' -f 2) + + + MAXLIB_VERSION := $(shell grep "define VERSION" \ + $(EXTERNALS_SRC)/maxlib/maxlib.c | cut -d '"' -f 2) + + + OSC_VERSION := $(shell grep "define VERSION" $(EXTERNALS_SRC)/OSCx/src/OSC.c | \ + cut -d '"' -f 2) + + + PDP_VERSION := $(shell grep PDP_VERSION= $(EXTERNALS_SRC)/pdp/configure | \ + cut -d '=' -f 2) + + + PMPD_VERSION := $(shell grep "define VERSION" \ + $(EXTERNALS_SRC)/pmpd/src/pmpd.c | cut -d '"' -f 2) + + + TOXY_MAJOR_VERSION := $(shell grep TOXY_VERSION \ + $(EXTERNALS_SRC)/miXed/toxy/build_counter | cut -d ' ' -f 3 | \ + cut -d '"' -f 2) + TOXY_RELEASE := $(shell grep TOXY_RELEASE \ + $(EXTERNALS_SRC)/miXed/toxy/build_counter | cut -d ' ' -f 3 | \ + cut -d '"' -f 2) + TOXY_BUILD := $(shell grep TOXY_BUILD \ + $(EXTERNALS_SRC)/miXed/toxy/build_counter | cut -d ' ' -f 3 | \ + cut -d '"' -f 2) + TOXY_VERSION := $(TOXY_MAJOR_VERSION) $(TOXY_RELEASE) $(TOXY_BUILD) + + + ZEXY_VERSION := $(shell grep VERSION $(EXTERNALS_SRC)/zexy/src/zexy.h | \ + grep -v _VERSION | cut -d ' ' -f 3 | cut -d '"' -f 2) + + + # these are sent to all of the various Makefiles so that they all copy their # output to the same directory tree *************** *** 27,30 **** --- 109,113 ---- UNAME=$(UNAME)
+ #==============================================================================# # *************** *** 52,56 **** # flext flext: !
#------------------------------------------------------------------------------ --- 135,145 ---- # flext flext: ! # nusmuk ! cd $(EXTERNALS_SRC)/nusmuk/msd && $(EXTERNALS_SRC)/grill/flext/build.sh \ ! pd gcc ! cd $(EXTERNALS_SRC)/nusmuk/msd2D && $(EXTERNALS_SRC)/grill/flext/build.sh \ ! pd gcc ! cd $(EXTERNALS_SRC)/nusmuk/msd3D && $(EXTERNALS_SRC)/grill/flext/build.sh \ ! pd gcc
#------------------------------------------------------------------------------ *************** *** 61,65 **** --- 150,191 ---- #------------------------------------------------------------------------------ # pd + # pd's makefile has some of its own variables that need to be remapped + # this relies on patches/build_vars_4_makefile.in.patch hans@at.or.at + DESTDIR = "" + ifeq ($(OS_NAME),darwin) + LIBPD_DEST = $(INSTALL_PREFIX) + LIBBIN_DEST = $(BIN_DEST) + else + ifeq ($(OS_NAME),win) + LIBPD_DEST = $(INSTALL_PREFIX) + LIBBIN_DEST = $(BIN_DEST) + else + LIBPD_DEST = $(INSTDIR)/lib/pd + LIBBIN_DEST = $(LIB_DEST)/pd/bin + endif + endif + + PD_DEST_PATHS = $(DEST_PATHS) DESTDIR=$(DESTDIR) \ + LIBPD_DEST=$(LIBPD_DEST) \ + LIBBIN_DEST=$(LIBBIN_DEST) + + PD_CONFIGURE_FLAGS = + PD_EXTRA_FLAGS = + + # Pd sometimes needs a specific autoconf, which is labeled differently on different + # machines + #PD_AUTOCONF := ${shell ( test -x "`which autoconf-2.59`" && echo autoconf-2.59 ) || echo autoconf } + PD_AUTOCONF = autoconf + + pd: + echo "DESTDIR $(DESTDIR) LIBBIN_DEST $(LIBBIN_DEST)" + echo "DEST_PATHS $(DEST_PATHS)" + echo "PD_DEST_PATHS $(PD_DEST_PATHS)" + echo "PD_EXTRA_FLAGS $(PD_EXTRA_FLAGS)" + cd $(PD_SRC)/src/ && $(PD_AUTOCONF) + cd $(PD_SRC)/src && ./configure $(PD_CONFIGURE_FLAGS) && \ + make $(PD_DEST_PATHS) $(PD_EXTRA_FLAGS) +
#==============================================================================# *************** *** 76,80 **** #------------------------------------------------------------------------------ # doc ! doc_install:
--- 202,207 ---- #------------------------------------------------------------------------------ # doc ! doc_install: ! cd $(DOC_SRC) && make $(DEST_PATHS) install
*************** *** 88,91 **** --- 215,226 ---- # flext_install flext_install: + # nusmuk + cd $(EXTERNALS_SRC)/nusmuk/msd && $(EXTERNALS_SRC)/grill/flext/build.sh \ + pd gcc install + cd $(EXTERNALS_SRC)/nusmuk/msd2D && $(EXTERNALS_SRC)/grill/flext/build.sh \ + pd gcc install + cd $(EXTERNALS_SRC)/nusmuk/msd3D && $(EXTERNALS_SRC)/grill/flext/build.sh \ + pd gcc install + #TODO: need to add nusmuk/editor
*************** *** 97,111 **** #------------------------------------------------------------------------------ # pd ! pd_install:
#------------------------------------------------------------------------------ # install ! install: abstractions_install doc_install externals_install flext_install ! install: gem_install pd_install @echo "Complete install succeeded!"
#==============================================================================# # CLEAN TARGETS #==============================================================================# abstractions_clean: --- 232,411 ---- #------------------------------------------------------------------------------ # pd ! pd_install: pd ! cd $(PD_SRC)/src && \ ! make $(PD_DEST_PATHS) $(PD_EXTRA_FLAGS) install
#------------------------------------------------------------------------------ # install ! install: pd_install abstractions_install doc_install externals_install ! #install: flext_install gem_install @echo "Complete install succeeded!"
+ + + #==============================================================================# + # + # GENERATE TEXT FILES FOR PACKAGE + # + #==============================================================================# + + LICENSE_FILE = $(INSTALL_PREFIX)/License.html + license: + # generate HTML version of License + touch $(LICENSE_FILE) + echo "<html><body>" >> "$(LICENSE_FILE)" + echo "<h3>(Parts of this package can be used under the Pd/BSD license)</h3>" >> "$(LICENSE_FILE)" + echo "<font size="-1">" >> "$(LICENSE_FILE)" + cat "$(EXTERNALS_SRC)/creb/COPYING" | sed -e 's/^$$/<P>/g' >> "$(LICENSE_FILE)" + echo "</font></body></html>" >> $(LICENSE_FILE) + install -p "$(PD_SRC)/LICENSE.txt" "$(INSTALL_PREFIX)/PD LICENSE.txt" + + + + WELCOME_FILE = $(INSTALL_PREFIX)/Welcome.html + welcome: + touch $(WELCOME_FILE) + echo "<html><body><p><p>" >> $(WELCOME_FILE) + echo "<CENTER><IMG SRC="logo.jpg">" >> $(WELCOME_FILE) + echo "<h2>Version $(PD_VERSION)</h2>" >> $(WELCOME_FILE) + echo "<p>written by Miller S. Puckette</p></CENTER>" >> $(WELCOME_FILE) + echo "<FONT SIZE="-1">" >> $(WELCOME_FILE) + echo "<p>`grep -A9 ACKNOWLEDG $(PD_SRC)/README.txt`</p>" >> $(WELCOME_FILE) + echo "</FONT>" >> $(WELCOME_FILE) + echo "</body></html>" >> $(WELCOME_FILE) + + + + README_FILE = $(INSTALL_PREFIX)/ReadMe.html + readme: + echo $(CYCLONE_RELEASE) + -rm $(README_FILE) + touch $(README_FILE) + echo "<html>" >> $(README_FILE) + echo "<head>" >> $(README_FILE) + echo "<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />" >> $(README_FILE) + echo "</head>" >> $(README_FILE) + echo "<body>" >> $(README_FILE) + echo "<h2>Pure Data $(PD_VERSION)-$(PACKAGE_VERSION)</h2>" >> $(README_FILE) + echo "<p>Pd is a free real-time computer music software package resembling Max. It provides a patchable environment for audio analysis, synthesis, and processing, with a rich set of multimedia capabilities. You can get Pd for Linux, Windows, MacOS X, BSD, or IRIX.</p>" >> $(README_FILE) + echo "<p>For more information, go to: <a href="http://puredata.org%5C" target="pd">http://puredata.org</a></p>" >> $(README_FILE) + echo "<h3>Installation</h3>" >> $(README_FILE) + echo "<p>To install Pd, drag the Pd.app to anywhere in your hard disk.</p>" >> $(README_FILE) + echo "<p>To install Gem, pmpd, xsample, dyn~, and vasp support, copy <code>org.puredata.pd.plist</code> to <code>~/Library/Preferences</code> (<code>~</code> means your home folder). WARNING: this will overwrite any existing Pd preferences!</p>" >> $(README_FILE) + echo "<h3>Pure Data CVS Developers</h3>" >> $(README_FILE) + # this may seem whack, but it generates the list of developers from the SourceForge site: + curl 'http://sourceforge.net/project/memberlist.php?group_id=55736' | grep -A2 -e '<td>' | sed 's|(href=")|target="w" \1http://sourceforge.net%7C' >> $(README_FILE) + echo "</p>" >> $(README_FILE) + echo "<p>" >> $(README_FILE) + echo "Many others not listed have contributed their time and effort, this is just a list of the current developers in the SourceForge project. But really, every Pd user is a developer and is encouraged to contribute to the CVS repository." >> $(README_FILE) + echo "</p>" >> $(README_FILE) + echo "<h3>License</h3>" >> $(README_FILE) + echo "<p>" >> $(README_FILE) + echo "The Pd core is licensed under a <a href="PD%20LICENSE.txt">BSD license</a>, almost every other part of this package is available under the <a href="http://www.gnu.org/copyleft/gpl.html" target="gpl">GNU GPL</a>. A couple packages have BSD-style licenses too." >> $(README_FILE) + echo "</p>" >> $(README_FILE) + echo "<h3>Included Versions</h3>" >> $(README_FILE) + echo "<p>These externals are all included from the Pd CVS repository:</p>" >> $(README_FILE) + echo "<ul>" >> $(README_FILE) + echo "<li>pure data: $(PD_VERSION) " >> $(README_FILE) + echo "<li>cyclone: $(CYCLONE_VERSION)" >> $(README_FILE) + echo "<li>flext: $(FLEXT_VERSION)" >> $(README_FILE) + echo "<li>gem: $(GEM_VERSION)" >> $(README_FILE) + echo "<li>iemlib: `date +20%y.%m.%d`" >> $(README_FILE) + # + # these cause this error: + # Makefile:308: *** unterminated call to function `shell': missing `)'. Stop. + # + echo "<li>maxlib: $(MAXLIB_VERSION)" >> $(README_FILE) + echo "<li>osc: $(OSC_VERSION)" >> $(README_FILE) + echo "<li>pmpd: $(PMPD_VERSION)" >> $(README_FILE) + echo "<li>pd-abstractions: `date +20%y.%m.%d`" >> $(README_FILE) + echo "<li>pd-doc: `date +20%y.%m.%d`" >> $(README_FILE) + echo "<li>pd-externals: `date +20%y.%m.%d`" >> $(README_FILE) + echo "<li>pddp: `date +20%y.%m.%d`" >> $(README_FILE) + echo "<li>pdp: $(PDP_VERSION)" >> $(README_FILE) + echo "<li>toxy: $(TOXY_VERSION)" >> $(README_FILE) + echo "<li>unauthorized: `date +20%y.%m.%d`" >> $(README_FILE) + echo "<li>zexy: $(ZEXY_VERSION)" >> $(README_FILE) + echo "</ul>" >> $(README_FILE) + echo "(this package was built on `date`) <BR>" >> $(README_FILE) + echo "</body></html>" >> $(README_FILE) + + + #==============================================================================# + # + ## FINAL ASSEMBLY + # + #==============================================================================# + + + #---------------------------------------------------------------------------- + # DOC_FORMAT + doc_format: + # clean out cruft files + -find $(INSTALL_PREFIX) -name .DS_Store -delete + -find $(INSTALL_PREFIX) -name '*.*.bak' -delete + # run script to move help-*.pd files to *-help.pd according to the standard + cd $(DOCS_DEST) && \ + $(SCRIPTS_SRC)/convert-help-to-standard.sh + #---------------------------------------------------------------------------- + # remove write perms to prevent people form editing the helpfiles by mistake + cd $(DOCS_DEST) && chmod a-wx */*.pd */*/*.pd + cd $(DOCS_DEST) && chmod a-w ????*/*.* *.txt + + + + #==============================================================================# + # + # DEVELOPER TARGETS + # + #==============================================================================# + + devsymlinks: + + + + patch_pd: + # change Pd's version number to reflect the extended build + sed -i.bak 's/(pd_version[] = "Pd version )[0-9extndRC.-]*/\1$(PD_VERSION)-$(PACKAGE_VERSION)/' $(PD_SRC)/src/s_main.c + # apply all platform-neutral patches + for patch in $(wildcard $(CWD)/patches/*.patch); do \ + echo "Applying $$patch"; \ + cd $(PD_SRC)/src/ && patch -p0 < $$patch; \ + done + # apply all platform-specific patches + for patch in $(wildcard $(CWD)/patches/$(OS_NAME)/*.patch); do \ + echo "Applying $$patch"; \ + cd $(PD_SRC)/src/ && patch -p0 < $$patch; \ + done + -rm -f -- $(PD_SRC)/src/configure $(PD_SRC)/src/makefile + @echo " " + @echo "patching succeeded!" + + unpatch_pd: + # this sed pattern won't work with TEST versions + cd $(PD_SRC)/src && \ + sed -i.bak 's/(pd_version[] = "Pd version [0-9.]*)[0-9extndRC.-]*/\1/' \ + s_main.c + # apply all platform-neutral patches + for patch in $(wildcard $(CWD)/patches/*.patch); do \ + echo "Applying $$patch"; \ + cd $(PD_SRC)/src/ && patch -p0 -R < $$patch; \ + done + # apply all platform-specific patches + for patch in $(wildcard $(CWD)/patches/$(OS_NAME)/*.patch); do \ + echo "Applying $$patch"; \ + cd $(PD_SRC)/src/ && patch -p0 -R < $$patch; \ + done + -rm -f -- $(PD_SRC)/src/configure $(PD_SRC)/src/makefile + @echo " " + @echo "unpatching succeeded!" + + + #==============================================================================# + # # CLEAN TARGETS + # #==============================================================================# abstractions_clean: *************** *** 127,134 ****
pd_clean:
! # these targets are all from Makefile.buildlayout: ! # install_clean cruft_clean clean: abstractions_clean doc_clean externals_clean flext_clean clean: gem_clean pd_clean echo "Complete clean finished." --- 427,438 ----
pd_clean: + -cd $(PD_SRC) && make $(PD_DEST_PATHS) clean
! ! # these targets are all from Makefile.buildlayout: install_clean cruft_clean clean: abstractions_clean doc_clean externals_clean flext_clean clean: gem_clean pd_clean echo "Complete clean finished." + + + distclean: clean cruft_clean
Index: TODO =================================================================== RCS file: /cvsroot/pure-data/packages/TODO,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TODO 18 Nov 2005 18:05:53 -0000 1.3 --- TODO 21 Nov 2005 04:37:41 -0000 1.4 *************** *** 1,11 ****
! - make abstraction -lib loader. when a -lib mylibrary name is tried and fails ! in the path, then fails with IO's altname, then try to load as a path on top ! of extra: i.e. extra/mylibrary. If found, add to path, and add ! doc/5.reference/mylibrary to helppath.
! - call it sys_load_lib_folder();,
! - insert it after if (!sys_load_lib()) in s_main.c
- make pd section since I can't easily modify the pd tree --- 1,25 ----
! - global versioning system ! the package releases should have versions of there own which apply to ! all packages, regardless of format or OS. This will make for easy and ! seemless cross-platform work.
! - global optimization flags ! ideally, you would use a version of Pd that is fully optimized for your ! CPU. In order to do this, a system of optimization flags needs to be ! developed so that you can specific the target CPU in one place and have ! everything compile for that CPU.
! - libdir ! ! - document libdir format ! ! - write .sh script that generates the mylibrary/mylibrary.pd file with the ! meta data. It should take command line arguments, and put them into the ! meta file. ! ! - rename "applications" to "examples" ! ! - downcase *_DEST and *_SRC to be more readable
- make pd section since I can't easily modify the pd tree *************** *** 19,24 **** - merge in tigital's Makefile++
- - move purepd to abstractions - - add GRIPD for Anders
--- 33,36 ---- *************** *** 27,41 **** - mDNS objects!
! - import nqpoly4 and write helpfiles based on website: ! http://pix.test.at/pd/nqpoly/nqpoly4.html ! ! - global versioning system ! the package releases should have versions of there own which apply to ! all packages, regardless of format or OS. This will make for easy and ! seemless cross-platform work. ! ! - global optimization flags ! ideally, you would use a version of Pd that is fully optimized for your ! CPU. In order to do this, a system of optimization flags needs to be ! developed so that you can specific the target CPU in one place and have ! everything compile for that CPU. --- 39,42 ---- - mDNS objects!
! - make standard targets: distclean (*~, etc.), installdirs (make just the ! dirs), uninstall instead of install_clean