|
From: Bob T. <bt...@us...> - 2001-06-03 23:41:01
|
Update of /cvsroot/benson/benson2/src/perl In directory usw-pr-cvs1:/tmp/cvs-serv13579/src/perl Modified Files: Makefile.in Log Message: Several changes to the build environment Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson2/src/perl/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.in 2001/05/29 05:05:15 1.4 --- Makefile.in 2001/06/03 23:33:40 1.5 *************** *** 64,77 **** CXX = @CXX@ DLLTOOL = @DLLTOOL@ HAVE_X11 = @HAVE_X11@ - LD = @LD@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ - NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ VERSION = @VERSION@ idl = @idl@ --- 64,79 ---- CXX = @CXX@ DLLTOOL = @DLLTOOL@ + ECHO = @ECHO@ + EXEEXT = @EXEEXT@ HAVE_X11 = @HAVE_X11@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ + STRIP = @STRIP@ VERSION = @VERSION@ idl = @idl@ *************** *** 100,104 **** X_PRE_LIBS = @X_PRE_LIBS@ libperl_a_LIBADD = ! libperl_a_OBJECTS = PerlObject.o Perl_util.o AR = ar CXXFLAGS = @CXXFLAGS@ --- 102,106 ---- X_PRE_LIBS = @X_PRE_LIBS@ libperl_a_LIBADD = ! libperl_a_OBJECTS = PerlObject.$(OBJEXT) Perl_util.$(OBJEXT) AR = ar CXXFLAGS = @CXXFLAGS@ *************** *** 120,124 **** all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/perl/Makefile --- 122,126 ---- all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .obj .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/perl/Makefile *************** *** 138,141 **** --- 140,148 ---- maintainer-clean-noinstLIBRARIES: + # FIXME: We should only use cygpath when building on Windows, + # and only if it is available. + .c.obj: + $(COMPILE) -c `cygpath -w $<` + .s.o: $(COMPILE) -c $< *************** *** 146,149 **** --- 153,157 ---- mostlyclean-compile: -rm -f *.o core *.core + -rm -f *.$(OBJEXT) clean-compile: *************** *** 176,179 **** --- 184,189 ---- .cc.o: $(CXXCOMPILE) -c $< + .cc.obj: + $(CXXCOMPILE) -c `cygpath -w $<` .cc.lo: $(LTCXXCOMPILE) -c $< |