#!/bin/sh

# a build script to build and configure the entire pdp distro
# might need some editing to work for you


# build the stable stuff
autoconf && ./configure --enable-mmx --prefix=/home/tom/pd && make install

cd scaf 
autoconf && ./configure && make install
cd ..


# build the experimental stuff

make -C opengl

