diff options
author | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2010-05-12 19:17:15 +0000 |
---|---|---|
committer | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2010-05-12 19:17:15 +0000 |
commit | f6f29377728c80d1e1c72fdc3f9a113712d737f6 (patch) | |
tree | bd57888677fd17cc2ce8bd2227240ae3a034e875 /test/Makefile | |
parent | ce7d7364150288a3214561111e77040318dae520 (diff) |
Added to_ and from_ascii_code
svn path=/trunk/externals/tof/; revision=13515
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 69 |
1 files changed, 35 insertions, 34 deletions
diff --git a/test/Makefile b/test/Makefile index 22929fb..dd9f914 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,36 +1,37 @@ default: -PARAM: param paramDump paramRoute paramFile paramId paramCustom
-
-current:
- echo make class
-
-clean:
- rm -f *.pd_linux *.o
-
-# ----------------------- LINUX i386 -----------------------
-
-#paramL: param.pd_linux
-
-#patchArguments: patchArguments.pd_linux
-
-.SUFFIXES: .pd_linux
-
-PDPATH = ../../../pd
-
-TOFPATH = ../src
-
-LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \
- -Wall -W -Wshadow -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch
-
-LINUXINCLUDE = -I$(PDPATH)/src
-
-#.pd_linux: .c
-
-.c:
- cc $(LINUXCFLAGS) $(LINUXINCLUDE) -I $(TOFPATH) -o $*.o -c $*.c
- ld --export-dynamic -shared -o $*.pd_linux $*.o -lc -lm
- strip --strip-unneeded $*.pd_linux
- rm $*.o
- mv $*.pd_linux ~/pd-externals/tof
+PARAM: param paramDump paramRoute paramFile paramId paramCustom + +current: + echo make class + +clean: + rm -f *.pd_linux *.o + +# ----------------------- LINUX i386 ----------------------- + +#paramL: param.pd_linux + +#patchArguments: patchArguments.pd_linux + +.SUFFIXES: .pd_linux + +PDPATH = ../../../pd + +TOFPATH = ../src + +LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ + -Wall -W -Wshadow -Wstrict-prototypes \ + -Wno-unused -Wno-parentheses -Wno-switch + +LINUXINCLUDE = -I$(PDPATH)/src + +#.pd_linux: .c + +.c: + cc $(LINUXCFLAGS) $(LINUXINCLUDE) -I $(TOFPATH) -o $*.o -c $*.c + ld --export-dynamic -shared -o $*.pd_linux $*.o -lc -lm + strip --strip-unneeded $*.pd_linux + rm $*.o + mv $*.pd_linux ~/pd-externals/tof + cp $*-help.pd ~/pd-externals/tof |