patrick wrote:
but there is no makefile for linux (or scons)... anyone here can help me to compile it?
see attached makefile.
i had to rename the Source/*.cc files to Source/*.c to compile them correctly (don't know, if it is just a gcc-4 issue), so you have to do so too in order to use the Makefile.
plain C-files shouldn't have the extension ".cc"
,fg-.adsr- IOhannes
pat
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
all: dyna~ rms~
dyna~: gcc -c -o dyna_tilde.o -I. -g -O2 -DPD dyna_tilde.c gcc -export_dynamic -shared -o dyna~.pd_linux dyna_tilde.o -lm -lc
rms~: gcc -c -o rms_tilde.o -I. -g -O2 -DPD rms_tilde.c gcc -export_rmsmic -shared -o rms~.pd_linux rms_tilde.o -lm -lc
clean: -rm -f *.o *.pd_linux