diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-11-14 18:17:29 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-11-14 18:17:29 +0000 |
commit | 22e2a8c435e6907aae8fb43c54341f8ec55e6231 (patch) | |
tree | 657b6a62954ba90dfd77fa4b55c96ff705cf60f6 /src/iem_mp3/makefile | |
parent | cc8ea374e396a623e2c3e690c8e8efc47e0a1cbb (diff) |
moved most logic from individual makefiles into Make.include
svn path=/trunk/externals/iemlib/; revision=3892
Diffstat (limited to 'src/iem_mp3/makefile')
-rw-r--r-- | src/iem_mp3/makefile | 37 |
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 - - - |