From 712d78f9342029bc4812bb0fa808ebbc89b75fab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 10 Mar 2006 12:21:20 +0000 Subject: 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 --- src/makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src') 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 -- cgit v1.2.1