blob: 3cfb4a9fdc2b2805898ca1646732b89514683dae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# flext - C++ layer for Max/MSP and pd (pure data) externals
# tutorial examples
# Copyright (c) 2001,2002 Thomas Grill (xovo@gmx.net)
#
# where are the PD header files?
PDPATH=/usr/local/include
# where do the flext libraries reside?
FLEXTPATH=/usr/local/lib/pd/flext
# where should the examples be built? (relative path)
OUTPATH=./pd-linux
# install the examples? (yes/no)
INSTALL=yes
# where should the examples be installed?
INSTPATH=${FLEXTPATH}/tutorial
|