aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.txt
diff options
context:
space:
mode:
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
-
-
-
-