[PD-cvs] externals/iem/iem_tab/src makefile,1.1,1.2

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Fri Mar 10 13:21:22 CET 2006


Update of /cvsroot/pure-data/externals/iem/iem_tab/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12774

Modified Files:
	makefile 
Log Message:
removed dependency on "libpthread" (there is none!);
do not touch every file on compilation;
exchanged "cc" and "ld" by "$(CC)" and "$(LD)"


Index: makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/iem/iem_tab/src/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** makefile	10 Mar 2006 03:05:55 -0000	1.1
--- makefile	10 Mar 2006 12:21:20 -0000	1.2
***************
*** 6,10 ****
  
  LDFLAGS = -export-dynamic -shared
! LIB = -ldl -lm -lpthread
  
  #select either the DBG and OPT compiler flags below:
--- 6,10 ----
  
  LDFLAGS = -export-dynamic -shared
! LIB = -ldl -lm
  
  #select either the DBG and OPT compiler flags below:
***************
*** 72,81 ****
  all: $(OBJ)
  	@echo :: $(OBJ)
! 	ld $(LDFLAGS) -o $(TARGET) *.o $(LIB)
  	strip --strip-unneeded $(TARGET)
  
  $(OBJ) : %.o : %.c
! 	touch $*.c
! 	cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
  
  
--- 72,80 ----
  all: $(OBJ)
  	@echo :: $(OBJ)
! 	$(LD) $(LDFLAGS) -o $(TARGET) *.o $(LIB)
  	strip --strip-unneeded $(TARGET)
  
  $(OBJ) : %.o : %.c
! 	$(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
  
  





More information about the Pd-cvs mailing list