From: Patrick C. <pa...@us...> - 2002-01-18 19:15:48
|
Update of /cvsroot/linux-decnet/dnprogs/libdnet In directory usw-pr-cvs1:/tmp/cvs-serv8599/libdnet Modified Files: Makefile Log Message: More makefile fixed from my Makefile guru Maciej W. Rozycki Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile 2001/07/17 08:59:18 1.5 --- Makefile 2002/01/18 19:15:45 1.6 *************** *** 3,8 **** #-------------------------------------------------------------------------- include ../Makefile.common ! LD=gcc ! LDFLAGS=-O -shared AR=ar ARFLAGS=rcs --- 3,8 ---- #-------------------------------------------------------------------------- include ../Makefile.common ! CC=gcc ! LDFLAGS=-O AR=ar ARFLAGS=rcs *************** *** 30,34 **** $(SHAREDLIB): ${PICOBJS} ! ${LD} ${LDFLAGS} -o $@ ${PICOBJS} -Wl,-soname=libdnet.so.$(MAJOR_VERSION) -lc ln -sf $(SHAREDLIB) $(LIBNAME).so.$(MAJOR_VERSION) ln -sf $(LIBNAME).so.$(MAJOR_VERSION) $(LIBNAME).so --- 30,34 ---- $(SHAREDLIB): ${PICOBJS} ! ${CC} ${LDFLAGS} -shared -o $@ ${PICOBJS} -Wl,-soname=libdnet.so.$(MAJOR_VERSION) ln -sf $(SHAREDLIB) $(LIBNAME).so.$(MAJOR_VERSION) ln -sf $(LIBNAME).so.$(MAJOR_VERSION) $(LIBNAME).so |