aboutsummaryrefslogtreecommitdiff
path: root/src/iem_mp3
diff options
context:
space:
mode:
Diffstat (limited to 'src/iem_mp3')
-rw-r--r--src/iem_mp3/makefile37
1 files changed, 1 insertions, 36 deletions
diff --git a/src/iem_mp3/makefile b/src/iem_mp3/makefile
index 955e508..700376d 100644
--- a/src/iem_mp3/makefile
+++ b/src/iem_mp3/makefile
@@ -1,39 +1,4 @@
-current: all
+TARGET = iem_mp3
-.SUFFIXES: .pd_linux
include ../../Make.include
-INCLUDE = -I. -I$(PDSOURCE)
-
-# the sources
-
-SRC = sigmp3play.c \
- iem_mp3.c
-
-TARGET = iem_mp3.pd_linux
-
-
-OBJ = $(SRC:.c=.o)
-
-#
-# ------------------ targets ------------------------------------
-#
-
-clean:
- -rm ../../lib/$(TARGET) $(TARGET)
- -rm *.o
-
-all: $(OBJ)
-
- @echo :: $(OBJ)
-
- ld $(LDFLAGS) -o $(TARGET) *.o $(LIB)
- strip --strip-unneeded $(TARGET)
- cp $(TARGET) ../../lib
-
-$(OBJ) : %.o : %.c
- touch $*.c
- cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
-
-
-