diff options
-rw-r--r-- | ff/ff.c | 4 | ||||
-rw-r--r-- | ff/makefile | 9 |
2 files changed, 11 insertions, 2 deletions
@@ -54,6 +54,8 @@ #include <sys/stat.h> #include <fcntl.h> #include <sys/ioctl.h> +#include <string.h> +#include <stdio.h> #include "input.h" @@ -455,7 +457,7 @@ void ffPeriodic_level(t_ff *x, t_floatarg level) void ffPeriodic_waveform(t_ff *x, t_symbol* waveform) { if (x->ff_fd < 0) return; - unsigned short shortwave; + unsigned short shortwave = 0; int n = 0; while (waves[n].wave) { diff --git a/ff/makefile b/ff/makefile index 99554e3..7708283 100644 --- a/ff/makefile +++ b/ff/makefile @@ -1,7 +1,14 @@ + +CFLAGS = -O2 -W -Wall + +all: ff + ff: ff.c - gcc $(CFLAGS) $(LINUXCFLAGS) $(LINUXINCLUDE) -o ff.o -c ff.c + $(CC) $(CFLAGS) $(LINUXCFLAGS) $(LINUXINCLUDE) -o ff.o -c ff.c ld -export_dynamic -shared -o ff.pd_linux ff.o -lc -lm strip --strip-unneeded ff.pd_linux rm ff.o +clean: + rm -f *~ *.pd_* *.dll *.o |