This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
.cpp.lo
- From: Waldemar Rosenbach <bobka at c-lab dot de>
- To: automake at gnu dot org
- Date: Fri, 26 Jul 2002 22:03:15 +0200
- Subject: .cpp.lo
Linux 2.4.18
GNU Make version 3.79.1
autoconf (GNU Autoconf) 2.52
automake (GNU automake) 1.6.2
automake generates in Makefile.in:
.cpp.lo:
@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo'
tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
$(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$<
CXXDEPMODE = @CXXDEPMODE@
uninstall-info-am:
this become in Makefile:
.cpp.lo:
source='$<' object='$@' libtool=yes \
depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
$(CXXDEPMODE) $(depcomp) \
$(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$<
CXXDEPMODE = depmode=none
uninstall-info-am:
and that doesn't work: *.lo files are not created.
ps:
make check in automake:
XFAIL: auxdir2.test
XFAIL: cond17.test
XFAIL: condd.test
XFAIL: subdir5.test
any ideas?