#==============================================================================# # # Centralized cross-platform build system # # see for instructions: http://puredata.org/docs/developer/build # # #==============================================================================# CWD := $(shell pwd) cvs_root_dir := $(shell cd $(CWD)/.. && pwd) DESTDIR = $(CWD)/build BUILDLAYOUT_DIR = $(CWD) ## default target all: pd abstractions doc externals @echo "Complete build succeeded!" include $(BUILDLAYOUT_DIR)/Makefile.buildlayout #==============================================================================# # # GET VERSIONS FOR RELEVANT SOFTWARE # #==============================================================================# 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) GEM_VERSION := $(shell sed -n 's|^AC_INIT.\[Gem\],\[\([0-9]\).*|\1|p' $(gem_src)/configure.ac).$(shell sed -n 's|^AC_INIT.\[Gem\],\[[0-9]\.\([0-9][0-9]*\).*|\1|p' $(gem_src)/configure.ac) MAXLIB_VERSION := $(shell grep "define VERSION" \ $(externals_src)/maxlib/maxlib.c | cut -d '"' -f 2) OSCX_VERSION := $(shell grep "define VERSION" $(externals_src)/oscx/OSC.c | \ cut -d '"' -f 2) PDP_VERSION := $(shell grep PDP_VERSION= $(externals_src)/pdp/configure.ac | \ cut -d '=' -f 2) 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 DEST_PATHS = BUILDLAYOUT_DIR=$(BUILDLAYOUT_DIR) \ cvs_root_dir=$(cvs_root_dir) \ DESTDIR=$(DESTDIR) \ prefix=$(prefix) \ libpddir=$(libpddir) \ pkglibdir=$(libpddir) \ OPT_CFLAGS="$(OPT_CFLAGS)" \ UNAME=$(UNAME) \ STRIP="$(STRIP)" #==============================================================================# # # BUILD TARGETS # #==============================================================================# #------------------------------------------------------------------------------ # abstractions abstractions: #------------------------------------------------------------------------------ # doc doc: #------------------------------------------------------------------------------ # externals externals: $(MAKE) -C $(externals_src) $(DEST_PATHS) #------------------------------------------------------------------------------ # pd PD_CONFIGURE_FLAGS = --prefix=$(prefix) ifeq ($(OS_NAME),darwin) PD_CONFIGURE_FLAGS += --enable-jack else ifeq ($(OS_NAME),linux) PD_CONFIGURE_FLAGS += --enable-jack --enable-alsa else PD_CONFIGURE_FLAGS += endif endif PD_BUILD_FLAGS = #----------------------------------------------------------------------------# # new autotools build system pd: set_version cd $(pd_src) \ && ./autogen.sh \ && ./configure $(PD_CONFIGURE_FLAGS) \ && make $(DEST_PATHS) $(PD_BUILD_FLAGS) \ CFLAGS="-O2 -g -Wstrict-aliasing=2" PD_NAME=Pd pd_install: pd $(MAKE) -C $(pd_src) $(DEST_PATHS) $(PD_BUILD_FLAGS) install install -d $(DESTDIR)$(manualsdir)/$(PD_NAME) install -p $(pd_src)/src/notes.txt $(DESTDIR)$(manualsdir)/$(PD_NAME) #==============================================================================# # # INSTALL TARGETS # #==============================================================================# # this is used for installing into a pre-build Pd binary extended_install: abstractions_install doc_install \ externals_install readme_install welcome_install \ license_install noncvs_install pd_startup_install search_plugin_install #------------------------------------------------------------------------------ # install install: pd_install extended_install @echo "Complete install succeeded!" #------------------------------------------------------------------------------ # install_devel devel_install: pd_devel_install @echo "Complete install succeeded!" #------------------------------------------------------------------------------ # abstractions_install abstractions_install: $(MAKE) -C $(abstractions_src) $(DEST_PATHS) install #------------------------------------------------------------------------------ # doc_install doc_install: $(MAKE) -C $(doc_src) $(DEST_PATHS) install #------------------------------------------------------------------------------ # externals_install externals_install: $(MAKE) -C $(externals_src) $(DEST_PATHS) install #------------------------------------------------------------------------------ # noncvs_install # this is for including pre-compiled binaries in a build noncvs_install: install -d $(DESTDIR)$(objectsdir) test ! -d $(packages_src)/noncvs/$(OS_NAME)/extra/ || \ (cd $(packages_src)/noncvs/$(OS_NAME)/extra/ && \ tar --exclude .svn --exclude .git --exclude CVS --create * | \ tar --extract --directory $(DESTDIR)$(objectsdir) ) #------------------------------------------------------------------------------ # make loaders start automatically by being in new 'startup' folder pd_startup_install: install -d $(DESTDIR)$(libpddir)/startup cd $(DESTDIR)$(libpddir)/startup && \ $(LN_S) -f ../extra/libdir/libdir.$(EXTENSION) 0.libdir.$(EXTENSION) && \ $(LN_S) -f ../extra/vanilla/list.$(EXTENSION) 1.list.$(EXTENSION) && \ $(LN_S) -f ../extra/vanilla/ vanilla && \ $(LN_S) -f ../extra/extra/ extra && \ $(LN_S) -f ../extra/tclpd/ tclpd && \ $(LN_S) -f ../extra/pdlua/ pdlua #------------------------------------------------------------------------------ # install the search plugin by default search_plugin_install: install -d $(DESTDIR)$(objectsdir)/search-plugin install -p $(scripts_src)/guiplugins/search-plugin/search-plugin.tcl \ $(DESTDIR)$(objectsdir)/search-plugin/ make -C $(scripts_src)/guiplugins/search-plugin/po \ DESTDIR=$(DESTDIR)$(objectsdir)/search-plugin/po/ install #==============================================================================# # # GENERATE TEXT FILES FOR PACKAGE # #==============================================================================# LICENSE_FILE = $(DESTDIR)$(manualsdir)/$(PD_NAME)/License.html license_install: # generate HTML version of License install -d $(DESTDIR)$(manualsdir)/$(PD_NAME) -rm $(LICENSE_FILE) touch $(LICENSE_FILE) echo "" >> "$(LICENSE_FILE)" echo "

(Parts of this package can be used under " >> "$(LICENSE_FILE)" echo "Pd’s BSD license)

" >> "$(LICENSE_FILE)" echo "" >> "$(LICENSE_FILE)" cat "$(packages_src)/gpl-3.0.txt" | sed -e 's/^$$/\/g' >> "$(LICENSE_FILE)" echo "" >> $(LICENSE_FILE) # Pd's license file install -p "$(pd_src)/LICENSE.txt" "$(DESTDIR)$(manualsdir)/$(PD_NAME)/Pd-LICENSE.txt" WELCOME_FILE = $(DESTDIR)$(manualsdir)/$(PD_NAME)/Welcome.html welcome_install: install -d $(DESTDIR)$(manualsdir)/$(PD_NAME) -rm $(WELCOME_FILE) touch $(WELCOME_FILE) echo "" >> $(WELCOME_FILE) echo "" >> $(WELCOME_FILE) echo "" >> $(WELCOME_FILE) echo "

" >> $(WELCOME_FILE) echo "

" >> $(WELCOME_FILE) echo "

Version $(PD_VERSION)

" >> $(WELCOME_FILE) echo "

written by Miller S. Puckette

" >> $(WELCOME_FILE) echo "" >> $(WELCOME_FILE) echo "

`grep -A9 ACKNOWLEDG $(pd_src)/README.txt`

" >> $(WELCOME_FILE) echo "
" >> $(WELCOME_FILE) echo "" >> $(WELCOME_FILE) README_FILE = $(DESTDIR)$(manualsdir)/$(PD_NAME)/ReadMe.html readme_install: install -d $(DESTDIR)$(manualsdir)/$(PD_NAME) echo $(CYCLONE_RELEASE) -rm $(README_FILE) touch $(README_FILE) echo '' >> $(README_FILE) echo '' >> $(README_FILE) echo "" >> $(README_FILE) echo "" >> $(README_FILE) echo "" >> $(README_FILE) echo "" >> $(README_FILE) echo "" >> $(README_FILE) echo "

Pd-extended $(PD_VERSION)

" >> $(README_FILE) echo "

Pd is a real-time, graphical programming language for media processing. It provides an 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.

" >> $(README_FILE) echo "

For more information, go to: http://puredata.info

" >> $(README_FILE) echo "

Installation

" >> $(README_FILE) ifeq ($(OS_NAME),linux) echo "

" >> $(README_FILE) echo "

" >> $(README_FILE) endif ifeq ($(OS_NAME),darwin) echo "

To install Pd, drag the $(PD_APP_NAME).app into your /Applications folder or to the shortcut in the disk image. (You might need to put the old one in the trash before copying this one to /Applications)

" >> $(README_FILE) echo "

If you want to start with the default preferences, go to the Preferences and click on Reset to Defaults. You can also throw away the Pd preferences file ~/Library/Preferences/org.puredata.pdextended.plist (~ means your home folder), or run this command in the Terminal.app:

rm ~/Library/Preferences/org.puredata.pdextended.plist

You can get detailed editing access to the preferences with the Apple utilities: defaults read org.puredata.pdextended, or, Property List Editor, which is freely available as part of XCode or the Server Tools.

" >> $(README_FILE) echo "

If you want to use PDP on Mac OS X 10.4/Tiger or 10.3/Panther, you will need to install X11 (X11 comes installed with 10.5/Leopard). It comes on the install CD/DVD that your computer came with. For more detail, see How to install X11 in OS X or How do I install Pd on MacOS X?.

" >> $(README_FILE) endif ifeq ($(OS_NAME),windows) echo "

To reset the default settings, and make sure that default libraries are loaded when Pd runs, go to the Edit menu, then Preferences and click on Reset to Defaults." >> $(README_FILE) echo "You can also reset to defaults by double-clicking C:\Program Files\pd\bin\pd-settings.reg to import the settings to the registry. WARNING: this will overwrite any existing Pd preferences!

" >> $(README_FILE) echo "

ASIO4ALL

" >> $(README_FILE) echo "

ASIO4ALL is a cost-free ASIO audio driver. Is it highly recommended for use with Pd. Download and install it, then when you launch Pd, choose the ASIO option from the Media menu. Using ASIO4ALL should mean less crashes and troubles, as well as better audio performance." >> $(README_FILE) echo "

" >> $(README_FILE) endif echo "

Installing Externals, Objects, and Help files

" >> $(README_FILE) echo "

" >> $(README_FILE) echo "If you would like to install other externals, objects, help files, etc. there are special folders that Pd-extended uses, which are listed below. If the folder does not exist, you should create it. You can find out more details about this by reading that FAQ: How do I install externals and help files?.

" >> $(README_FILE) echo "
" >> $(README_FILE) ifeq ($(OS_NAME),darwin) echo "
Only for the current user account
" >> $(README_FILE) echo "
~/Library/Pd
" >> $(README_FILE) echo "
For all user accounts on the computer
" >> $(README_FILE) echo "
/Library/Pd
" >> $(README_FILE) endif ifeq ($(OS_NAME),linux) echo "
Only for the current user account
" >> $(README_FILE) echo "
~/pd-externals/
" >> $(README_FILE) echo "
For all user accounts on the computer
" >> $(README_FILE) echo "
/usr/local/lib/pd-externals
" >> $(README_FILE) endif ifeq ($(OS_NAME),windows) echo "
Only for the current user account
" >> $(README_FILE) echo "
%UserProfile%\Application Data\Pd
" >> $(README_FILE) echo "
For all user accounts on the computer
" >> $(README_FILE) echo "
%ProgramFiles%\Common Files\Pd
" >> $(README_FILE) endif echo "
" >> $(README_FILE) echo "

Flext Binaries have been removed from Pd-extended

" >> $(README_FILE) echo "

As of release 0.41.4 of Pd-extended, the whole package is built from source every night. That means that some objects have been removed from the package because they were not being built from source (objects like [pool], [msd], [flashserver], etc.). You can download these objects from the original authors or get the files from the 0.40.3 Pd-extended release." >> $(README_FILE) echo "

" >> $(README_FILE) echo "

License

" >> $(README_FILE) echo "

" >> $(README_FILE) echo 'This package is released under the GNU GPL. The Pd core and some other included code is originally available with a BSD license from the Pd SVN on SourceForge.' >> $(README_FILE) echo "

" >> $(README_FILE) echo "

Patented Algorithms

" >> $(README_FILE) echo "

" >> $(README_FILE) echo "This package may contain software that is covered by patents in certain countries, like the U.S. and Germany. In order to use this software you must have the proper license. Below is a list of the known software packages that are covered by patents in some countries:" >> $(README_FILE) echo "

" >> $(README_FILE) echo "" >> $(README_FILE) echo '

Please consider trying to get rid of software patents in your country: http://www.nosoftwarepatents.com

' >> $(README_FILE) echo "

(this package was built on `date`)

" >> $(README_FILE) echo "" >> $(README_FILE) #==============================================================================# # ## FINAL ASSEMBLY # #==============================================================================# #---------------------------------------------------------------------------- # clean up the documentation before packaging doc_format: # fix perms in docs and example files -find $(DESTDIR) -name '*.aiff' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.dat' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.gif' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.html' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.mid' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.mov' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.mp3' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.pdf' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.png' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.txt' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.wav' -print0 | xargs -0 chmod a-x # clean out cruft files -find $(DESTDIR) -name .DS_Store -delete -find $(DESTDIR) -name '*.*.bak' -delete -find $(DESTDIR) -name .svn -print0 | xargs -0 rm -rf #==============================================================================# # # DEVELOPER TARGETS # #==============================================================================# set_version: # change Pd's version number to reflect the extended build # this needs the complete_version_defines patch to work cd $(pd_src)/src/ && \ sed 's|^\(#define PD_TEST_VERSION "\).*"|\1$(PD-EXTENDED_VERSION)"|' m_pd.h > \ m_pd.h.tmp && mv m_pd.h.tmp m_pd.h unset_version: # change the version number back to the original # this needs the complete_version_defines patch to work cd $(pd_src)/src && \ sed 's|^\(#define PD_TEST_VERSION ".*\)$(PD-EXTENDED_VERSION_PREFIX).*"|\1"|' \ m_pd.h > m_pd.h.tmp && \ mv m_pd.h.tmp m_pd.h #==============================================================================# # # CLEAN TARGETS # #==============================================================================# abstractions_clean: -$(MAKE) -C $(abstractions_src) $(DEST_PATHS) clean doc_clean: -$(MAKE) -C $(doc_src) $(DEST_PATHS) clean externals_clean: -$(MAKE) -C $(externals_src) $(DEST_PATHS) clean pd_clean: -$(MAKE) -C $(pd_src)/src $(DEST_PATHS) clean clean: abstractions_clean doc_clean externals_clean pd_clean echo "Complete clean finished." distclean: $(MAKE) -C $(abstractions_src) distclean $(MAKE) -C $(doc_src) distclean $(MAKE) -C $(externals_src) distclean -$(MAKE) -C $(pd_src) distclean test_locations: @echo "PD_VERSION: $(PD_VERSION)" @echo "PD-EXTENDED_VERSION: $(PD-EXTENDED_VERSION)" @echo "CWD $(CWD)" @echo "DESTDIR $(DESTDIR)" @echo "PREFIX $(prefix)" @echo "BINDIR $(bindir)" @echo "LIBDIR $(libdir)" @echo "OBJECTSDIR $(objectsdir)" @echo "PDDOCDIR $(pddocdir)" @echo "LIBPDDIR $(libpddir)" @echo "LIBPDBINDIR $(libpdbindir)" @echo "HELPDIR $(helpdir)" @echo "MANUALSDIR $(manualsdir)" @echo "EXAMPLESDIR $(examplesdir)" @echo "HAVE_AUTOGEN_SH --$(HAVE_AUTOGEN_SH)--" @echo "LN_S $(LN_S)" .PHONY = abstractions doc externals pd pd_install pd_startup_install extended_install install devel_install abstractions_install doc_install externals_install noncvs_install license_install welcome_install readme_install doc_format set_version unset_version abstractions_clean doc_clean externals_clean pd_clean clean distclean test_locations