aboutsummaryrefslogtreecommitdiff
path: root/iem_mp3/src/makefile_linux
diff options
context:
space:
mode:
Diffstat (limited to 'iem_mp3/src/makefile_linux')
-rw-r--r--iem_mp3/src/makefile_linux47
1 files changed, 0 insertions, 47 deletions
diff --git a/iem_mp3/src/makefile_linux b/iem_mp3/src/makefile_linux
deleted file mode 100644
index 4fe23a4..0000000
--- a/iem_mp3/src/makefile_linux
+++ /dev/null
@@ -1,47 +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 -fPIC
-
-SYSTEM = $(shell uname -m)
-
-# the sources
-
-SRC = mp3play~.c \
- iem_mp3.c
-
-TARGET = iem_mp3.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)
- mv $(TARGET) ..
-
-$(OBJ) : %.o : %.c
- $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
-
-
-
-