aboutsummaryrefslogtreecommitdiff
path: root/pd/INSTALL.txt
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-09 16:36:37 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-09 16:36:37 +0000
commit21c068f1916330e90f814bed461fe0821d1665ec (patch)
tree949b73696fff09a44b8d3eb01b70bae7174cbd14 /pd/INSTALL.txt
parentbf8ced1efe1a032342e864edc635fa4e2676670d (diff)
checked in pd-0.43-0.src.tar.gz
svn path=/trunk/; revision=15557
Diffstat (limited to 'pd/INSTALL.txt')
-rw-r--r--pd/INSTALL.txt30
1 files changed, 18 insertions, 12 deletions
diff --git a/pd/INSTALL.txt b/pd/INSTALL.txt
index a40aaa72..68e9b6b9 100644
--- a/pd/INSTALL.txt
+++ b/pd/INSTALL.txt
@@ -1,20 +1,26 @@
-Detailed installations instructions are in the HTML documentation, which
-you can find in doc/1.manual.
+Quick compilation instructions for Linux or Mac OSX:
-Quick compilation instructions for Linux or Mac OSX (assuming for Mac OSX that
-you've got Tck/Tk installed):
+There are two parallel build systems: the "old" one by Miller and the "new"
+one by Hans.
-Change to "src" subdirectory.
+Old build system: on Macintosh or linux, Change to "src" subdirectory.
+Type "./configure", possibly adding flags as follows:
-type "./configure", possibly adding flags as follows:
-
- To enable ALSA 0.9x (the latest one), add "--enable-alsa".
- To enable the older ALSA 0.5x, add "--enable-old-alsa".
- To enable Ritsch's RME 9652 driver, add --enable-rme".
To put Pd in /usr/bin instead of /usr/local/bin, add "--prefix=/bin".
+ To enable jack support: "--enable-jack"
-Type "make depend" and then "make"; or, if you prefer, as superuser
-type "make install".
+Then type "make"; and. if desired, as superuser type "make install".
To run pd, either type the full pathname as in /home/me/pd/bin/pd, or else
if you've chosen "make install", just type "pd".
+
+New build system: in this directory, type "./autogen.sh", then "./configure";
+then "make".
+
+Special instructions for Microsoft Windows: to use the old build system,
+install the Microsoft C compiler, cd to src and type "make -f makefile.nt".
+Then CD to the various subdirs of extra and type "make nt" in each. For the
+new build system, install cygwin and follow instructions as in linux or
+Macintosh.
+
+