diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-02-08 13:00:32 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-02-08 13:00:32 +0000 |
commit | 4d84d14ac1aa13958eaa2971b03f7f929a519105 (patch) | |
tree | 6579d3f2cea5410a10c4baac8d0f372fb0dff372 /desiredata/extra/pureunity/Makefile | |
parent | b334d38aefbd8e0e159d7af6c20d63c5d2b64859 (diff) |
reorganized
svn path=/trunk/; revision=9400
Diffstat (limited to 'desiredata/extra/pureunity/Makefile')
-rw-r--r-- | desiredata/extra/pureunity/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/desiredata/extra/pureunity/Makefile b/desiredata/extra/pureunity/Makefile new file mode 100644 index 00000000..a9e9ec88 --- /dev/null +++ b/desiredata/extra/pureunity/Makefile @@ -0,0 +1,19 @@ +# if you don't want the standard pd, set the PD-variable before doing "make" +# e.g. "PD=/home/matju/pd_devel_0_39_und/bin/pd make" + PD ?= pd +#PD ?= desire +PDFLAGS = -lib pureunity -noaudio +PDFLAGS += -lib gridflow +CFLAGS = -Wall + +test:: built + $(PD) $(PDFLAGS) main.pd + +built: Makefile pureunity.pd_linux + echo > built + +generic/%~.pd: generic/%.pd + +pureunity.pd_linux: pureunity.c Makefile + $(CC) $(CFLAGS) -shared -o pureunity.pd_linux pureunity.c + |