diff options
Diffstat (limited to 'pd/extra/pd~/makefile')
-rw-r--r-- | pd/extra/pd~/makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pd/extra/pd~/makefile b/pd/extra/pd~/makefile new file mode 100644 index 00000000..492c20c2 --- /dev/null +++ b/pd/extra/pd~/makefile @@ -0,0 +1,15 @@ +NAME=pd~ +CSYM=pd_tilde + +include ../makefile + +pd_linux: pdsched.pd_linux + +d_fat: pdsched.d_fat +d_ppc: pdsched.d_ppc + +pdsched.pd_linux: pdsched.c + $(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c + $(CC) -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm + strip --strip-unneeded $*.pd_linux + rm -f $*.o |