minor error and a question

2011-11-30 Thread Joakim Tjernlund
Noticed this in my automake(1.10.3) generated Makefile: install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z $(bindir) || $(MKDIR_P) $(DESTDIR)$(bindir) Should not that be: test -z $(DESTDIR)$(bindir) || $(MKDIR_P) $(DESTDIR)$(bindir) ? Question: make install always

Re: minor error and a question

2011-11-30 Thread Peter Johansson
On 11/30/11 11:11 AM, Joakim Tjernlund wrote: Question: make install always install all targets, even if some of then haven't been rebuilt since last install. Is it possible to have some dependency sensitive install so only rebuilt targets are reinstalled? Hi Jocke, In one of my projects I