aboutsummaryrefslogtreecommitdiff
path: root/src/iemlib1/makefile_linux
diff options
context:
space:
mode:
Diffstat (limited to 'src/iemlib1/makefile_linux')
-rw-r--r--src/iemlib1/makefile_linux69
1 files changed, 0 insertions, 69 deletions
diff --git a/src/iemlib1/makefile_linux b/src/iemlib1/makefile_linux
deleted file mode 100644
index bc0d68f..0000000
--- a/src/iemlib1/makefile_linux
+++ /dev/null
@@ -1,69 +0,0 @@
-current: all
-
-.SUFFIXES: .pd_linux
-
-INCLUDE = -I. -I/usr/local/src/pd/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 -fno-strict-aliasing \
- -DDL_OPEN
-
-SYSTEM = $(shell uname -m)
-
-# the sources
-
-SRC = biquad_freq_resp.c \
- db2v.c \
- f2note.c \
- filter~.c \
- FIR~.c \
- forpp.c \
- gate.c \
- hml_shelf~.c \
- iem_cot4~.c \
- iem_delay~.c \
- iem_pow4~.c \
- iem_sqrt4~.c \
- lp1_t~.c \
- mov_avrg_kern~.c \
- para_bp2~.c \
- peakenv~.c \
- prvu~.c \
- pvu~.c \
- rvu~.c \
- sin_phase~.c \
- soundfile_info.c \
- split.c \
- v2db.c \
- vcf_filter~.c \
- iemlib1.c
-
-TARGET = iemlib1.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)
-
-$(OBJ) : %.o : %.c
- $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
-
-
-
-