--- code/trunk/Makefile.in 2007/02/24 21:39:21 43 +++ code/tags/pcre-3.2/Makefile.in 2007/02/24 21:39:31 48 @@ -38,7 +38,7 @@ # LIBTOOL defaults to "", which cuts out the building of shared libraries. # If "configure" is called with --enable-shared-libraries, then LIBTOOL is -# set to "libtool", which causes shared libraries to be built, and LIBSUFFIX +# set to "./libtool", which causes shared libraries to be built, and LIBSUFFIX # is set to "la" instead of "a", which causes the shared libraries to be # installed. @@ -79,7 +79,7 @@ all: libtool libpcre.$(LIBSUFFIX) libpcreposix.$(LIBSUFFIX) pcretest pgrep libtool: config.guess config.sub ltconfig ltmain.sh - @if test "$(LIBTOOL)" = "libtool"; then \ + @if test "$(LIBTOOL)" = "./libtool"; then \ echo '--- Building libtool ---'; \ ./ltconfig ./ltmain.sh; \ echo '--- Built libtool ---'; fi @@ -110,7 +110,7 @@ @echo '--- Building shared library: libpcre' @echo ' ' -rm -f libpcre.la - libtool $(CC) -version-info '$(PCRELIBVERSION)' -o libpcre.la -rpath $(LIBDIR) $(LOBJ) + ./libtool $(CC) -version-info '$(PCRELIBVERSION)' -o libpcre.la -rpath $(LIBDIR) $(LOBJ) libpcreposix.a: pcreposix.o @echo ' ' @@ -125,7 +125,7 @@ @echo '--- Building shared library: libpcreposix' @echo ' ' -rm -f libpcreposix.la - libtool $(CC) -version-info '$(PCREPOSIXLIBVERSION)' -o libpcreposix.la -rpath $(LIBDIR) pcreposix.lo + ./libtool $(CC) -version-info '$(PCREPOSIXLIBVERSION)' -o libpcreposix.la -rpath $(LIBDIR) pcreposix.lo pcre.o: chartables.c pcre.c pcre.h internal.h config.h Makefile $(LIBTOOL) $(CC) -c $(CFLAGS) pcre.c @@ -160,10 +160,11 @@ $(LIBTOOL) $(INSTALL_DATA) libpcre.$(LIBSUFFIX) $(LIBDIR)/libpcre.$(LIBSUFFIX) $(LIBTOOL) $(INSTALL_DATA) libpcreposix.$(LIBSUFFIX) $(LIBDIR)/libpcreposix.$(LIBSUFFIX) $(INSTALL_DATA) pcre.h $(INCDIR)/pcre.h + $(INSTALL_DATA) pcreposix.h $(INCDIR)/pcreposix.h $(INSTALL_DATA) doc/pcre.3 $(MANDIR)/man3/pcre.3 - $(INSTALL_DATA) doc/pcreposix.3 $(MANDIR)/man3/pcre.3 + $(INSTALL_DATA) doc/pcreposix.3 $(MANDIR)/man3/pcreposix.3 $(INSTALL_DATA) doc/pgrep.1 $(MANDIR)/man1/pgrep.1 - @if test "$(LIBTOOL)" = "libtool"; then \ + @if test "$(LIBTOOL)" = "./libtool"; then \ echo ' '; \ echo '--- Rebuilding pgrep to use installed shared library ---'; \ echo $(CC) $(CFLAGS) -o pgrep pgrep.o -L$(LIBDIR) -lpcre; \