aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-03-10 12:21:20 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-03-10 12:21:20 +0000
commit712d78f9342029bc4812bb0fa808ebbc89b75fab (patch)
tree574f98ee1113f3e47d04108680669aa7ba1e899f
parent8c5d0621d0d305bb62997b4ad12af874ec253432 (diff)
removed dependency on "libpthread" (there is none!);
do not touch every file on compilation; exchanged "cc" and "ld" by "$(CC)" and "$(LD)" svn path=/trunk/externals/iem/iem_tab/; revision=4686
-rw-r--r--src/makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/makefile b/src/makefile
index 2f297e4..760d1d4 100644
--- a/src/makefile
+++ b/src/makefile
@@ -5,7 +5,7 @@ current: all
INCLUDE = -I. -I/usr/local/src/pd/src
LDFLAGS = -export-dynamic -shared
-LIB = -ldl -lm -lpthread
+LIB = -ldl -lm
#select either the DBG and OPT compiler flags below:
@@ -71,12 +71,11 @@ clean:
all: $(OBJ)
@echo :: $(OBJ)
- ld $(LDFLAGS) -o $(TARGET) *.o $(LIB)
+ $(LD) $(LDFLAGS) -o $(TARGET) *.o $(LIB)
strip --strip-unneeded $(TARGET)
$(OBJ) : %.o : %.c
- touch $*.c
- cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
+ $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c