diff -r 06521debb8ed -r 29ebc048d33f Makefile.in --- a/Makefile.in Sun Nov 16 22:19:57 2008 +0000 +++ b/Makefile.in Tue Dec 16 18:12:34 2008 +0000 @@ -39,7 +39,7 @@ build: $(patsubst %,build-%,$(TARGETS)) -install: real-install +install: build real-install clean: $(patsubst %,clean-%,$(TARGETS)) @@ -100,7 +100,7 @@ ifeq ($(strip $(LOCAL)),1) -real-install: build +real-install: @echo " CHMOD 'ct-ng'" @chmod a+x ct-ng @@ -112,7 +112,7 @@ #-------------------------------------- # Install rules -real-install: build $(patsubst %,install-%,$(TARGETS)) +real-install: $(patsubst %,install-%,$(TARGETS)) install-bin: $(DESTDIR)$(BINDIR) @echo " INST 'ct-ng'" @@ -125,11 +125,11 @@ install-lib: uninstall-lib $(DESTDIR)$(LIBDIR) install-lib-main install-lib-samples install-lib-main: $(DESTDIR)$(LIBDIR) - @for src_dir in config kconfig patches scripts tools; do \ + @for src_dir in config kconfig patches scripts; do \ echo " INST '$${src_dir}/'"; \ tar cf - --exclude=.svn $${src_dir} |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -); \ done - @rm -f "$(DESTDIR)$(LIBDIR)/tools/addToolVersion.sh" + @rm -f "$(DESTDIR)$(LIBDIR)/scripts/addToolVersion.sh" @echo " INST 'steps.mk'" @install -m 644 steps.mk "$(DESTDIR)$(LIBDIR)/steps.mk"