diff options
-rw-r--r-- | ext13.c | 2 | ||||
-rw-r--r-- | makefile | 2 | ||||
-rw-r--r-- | makefile.in | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -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); @@ -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) |