Dear automake community I'm currently learing gtkmm and as recommended I will use Autotools for it. So as to get used to Autotools I tried creating a minimal Autotools project, which should compile a HelloWorld program written in C++. I've got Autotools to create a configure file and a Makefile but the problem is that the Makefile doesn't work because there is a \ inserted which makes the line which should compile the sources to object files useless. e.g.
Code: .cpp.o: # if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ # then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi source='$<' object='$@' libtool=no \ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ $(CXXCOMPILE) -c -o $@ $< The thing is I don't know what causes this behavior the complete test project I use is downloadable here: http://niklas.sceneproject.org/infor...k-test2.tar.gz I appreciate your tips and ideas Nik
