diff options
-rw-r--r-- | cx.c | 5 | ||||
-rw-r--r-- | cx.h | 6 | ||||
-rw-r--r-- | makefile | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -8,7 +8,7 @@ #endif #include <m_pd.h> - +#include "cx.h" typedef struct _cxc { @@ -99,5 +99,6 @@ void cxc_setup(void) post("c : jdl@xdv.org ========================================"); post(" x : ver: "VERSION" ============================================"); post(" c: compiled: "__DATE__" =================================="); - post("\\"); + // post("\\"); + // L; } @@ -0,0 +1,6 @@ + +#include <stdio.h> + +#ifndef L +#define L fprintf(stderr,"%s:%d\n",__FILE__,__LINE__); +#endif @@ -18,7 +18,7 @@ TARGETS = binshift ascwave ixprint bangfilt bangfilt2 \ LINUXOBJECTS = $(TARGETS:%=%.o) -LINCLUDE = -I. -I../pd-0.35-test24/src +LINCLUDE = -I. -I../pd-0.35-0/src # possible defines # -DPRINTADDRS DEBUG = -DDEBUG -ggdb |