aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.txt
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-05-21 11:27:22 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-05-21 11:27:22 +0000
commitb2ccc0f603872267c4a1173f5bf3ea52a3ec5009 (patch)
treeebff3ff860dd3cde08dda3a33979554841d1e033 /src/makefile.txt
parent11817325d5f0caa369d69cf3b7bdf636a40aba23 (diff)
what the heck...
svn path=/trunk/externals/iem/iem_adaptfilt/; revision=7700
Diffstat (limited to 'src/makefile.txt')
-rw-r--r--src/makefile.txt50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/makefile.txt b/src/makefile.txt
deleted file mode 100644
index 699a5f2..0000000
--- a/src/makefile.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-current: all
-
-.SUFFIXES: .pd_linux
-
-INCLUDE = -I. -I/usr/local/src/pd-0.37-1/src
-
-LDFLAGS = -export-dynamic -shared
-LIB = -ldl -lm -lpthread
-
-#select either the DBG and OPT compiler flags below:
-
-CFLAGS = -DPD -DUNIX -W -Werror -Wno-unused \
- -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer \
- -DDL_OPEN
-
-SYSTEM = $(shell uname -m)
-
-# the sources
-
-SRC = NLMS~.c \
- NLMSCC~.c \
- n_CNLMS~.c \
- iem_adaptfilt.c
-
-TARGET = iem_adaptfilt.pd_linux
-
-
-OBJ = $(SRC:.c=.o)
-
-#
-# ------------------ targets ------------------------------------
-#
-
-clean:
- rm $(TARGET)
- rm *.o
-
-all: $(OBJ)
- @echo :: $(OBJ)
- ld $(LDFLAGS) -o $(TARGET) *.o $(LIB)
- strip --strip-unneeded $(TARGET)
- rm *.o
-
-$(OBJ) : %.o : %.c
- touch $*.c
- cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
-
-
-
-