aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext13.c2
-rw-r--r--makefile2
-rw-r--r--makefile.in2
3 files changed, 4 insertions, 2 deletions
diff --git a/ext13.c b/ext13.c
index b4eb2d4..c1ff932 100644
--- a/ext13.c
+++ b/ext13.c
@@ -36,6 +36,7 @@ void ossmixer_setup();
void send13_setup();
void receive13_setup();
void cdplayer_setup();
+void sfwrite13_setup();
static void* ext13_new(t_symbol* s) {
t_ext13 *x = (t_ext13 *)pd_new(ext13_class);
@@ -68,6 +69,7 @@ void ext13_setup(void)
send13_setup();
receive13_setup();
cdplayer_setup();
+ sfwrite13_setup();
post("EXT13 by dieb13@klingt.org");
post("EXT13: version: "VERSION);
diff --git a/makefile b/makefile
index 4f9d4b7..a3e3f0e 100644
--- a/makefile
+++ b/makefile
@@ -22,7 +22,7 @@ CXXFLAGS = $(CFLAGS)
#LIBS = -lc -lm
LIBS = -lpthread -lm -lc
-SOURCES = ftos.c kalashnikov.c openpatch.c sfread.c streamin13~.c strippath.c send13~.c receive13~.c catch13~.c throw13~.c filesize.c messages.c pipewrite~.c piperead~.c streamout13~.c wavinfo.c mandelbrot.c mandelbrot~.c scramble~.c promiscous~.c ossmixer.c send13.c receive13.c cdplayer.c
+SOURCES = ftos.c kalashnikov.c openpatch.c sfread.c streamin13~.c strippath.c send13~.c receive13~.c catch13~.c throw13~.c filesize.c messages.c pipewrite~.c piperead~.c streamout13~.c wavinfo.c mandelbrot.c mandelbrot~.c scramble~.c promiscous~.c ossmixer.c send13.c receive13.c cdplayer.c sfwrite13~.c
TARGETS = $(SOURCES:.c=.$(EXT))
all: $(TARGETS)
diff --git a/makefile.in b/makefile.in
index 82d10c0..53ab406 100644
--- a/makefile.in
+++ b/makefile.in
@@ -22,7 +22,7 @@ CXXFLAGS = $(CFLAGS)
#LIBS = -lc -lm
LIBS = -lpthread -lm -lc
-SOURCES = ftos.c kalashnikov.c openpatch.c sfread.c streamin13~.c strippath.c send13~.c receive13~.c catch13~.c throw13~.c filesize.c messages.c pipewrite~.c piperead~.c streamout13~.c wavinfo.c mandelbrot.c mandelbrot~.c scramble~.c promiscous~.c ossmixer.c send13.c receive13.c cdplayer.c
+SOURCES = ftos.c kalashnikov.c openpatch.c sfread.c streamin13~.c strippath.c send13~.c receive13~.c catch13~.c throw13~.c filesize.c messages.c pipewrite~.c piperead~.c streamout13~.c wavinfo.c mandelbrot.c mandelbrot~.c scramble~.c promiscous~.c ossmixer.c send13.c receive13.c cdplayer.c sfwrite13~.c
TARGETS = $(SOURCES:.c=.$(EXT))
all: $(TARGETS)