aboutsummaryrefslogtreecommitdiff
path: root/src/iem_t3_lib
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-11-14 18:17:29 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-11-14 18:17:29 +0000
commit22e2a8c435e6907aae8fb43c54341f8ec55e6231 (patch)
tree657b6a62954ba90dfd77fa4b55c96ff705cf60f6 /src/iem_t3_lib
parentcc8ea374e396a623e2c3e690c8e8efc47e0a1cbb (diff)
moved most logic from individual makefiles into Make.include
svn path=/trunk/externals/iemlib/; revision=3892
Diffstat (limited to 'src/iem_t3_lib')
-rw-r--r--src/iem_t3_lib/makefile43
1 files changed, 1 insertions, 42 deletions
diff --git a/src/iem_t3_lib/makefile b/src/iem_t3_lib/makefile
index 2e5cd8b..597ccdf 100644
--- a/src/iem_t3_lib/makefile
+++ b/src/iem_t3_lib/makefile
@@ -1,45 +1,4 @@
-current: all
+TARGET = iem_t3_lib
-.SUFFIXES: .pd_linux
include ../../Make.include
-INCLUDE = -I. -I$(PDSOURCE)
-
-# the sources
-
-SRC = sigt3_line.c \
- sigt3_sig.c \
- t3_bpe.c \
- t3_delay.c \
- t3_metro.c \
- t3_timer.c \
- iem_t3_lib.c
-
-TARGET = iem_t3_lib.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
-
-
-
-