Makefile.in
changeset 1101 29ebc048d33f
parent 1048 06521debb8ed
child 1109 a1dc8836fcf4
     1.1 --- a/Makefile.in	Sun Nov 16 22:19:57 2008 +0000
     1.2 +++ b/Makefile.in	Tue Dec 16 18:12:34 2008 +0000
     1.3 @@ -39,7 +39,7 @@
     1.4  
     1.5  build: $(patsubst %,build-%,$(TARGETS))
     1.6  
     1.7 -install: real-install
     1.8 +install: build real-install
     1.9  
    1.10  clean: $(patsubst %,clean-%,$(TARGETS))
    1.11  
    1.12 @@ -100,7 +100,7 @@
    1.13  
    1.14  ifeq ($(strip $(LOCAL)),1)
    1.15  
    1.16 -real-install: build
    1.17 +real-install:
    1.18  	@echo "  CHMOD  'ct-ng'"
    1.19  	@chmod a+x ct-ng
    1.20  
    1.21 @@ -112,7 +112,7 @@
    1.22  #--------------------------------------
    1.23  # Install rules
    1.24  
    1.25 -real-install: build $(patsubst %,install-%,$(TARGETS))
    1.26 +real-install: $(patsubst %,install-%,$(TARGETS))
    1.27  
    1.28  install-bin: $(DESTDIR)$(BINDIR)
    1.29  	@echo "  INST   'ct-ng'"
    1.30 @@ -125,11 +125,11 @@
    1.31  install-lib: uninstall-lib $(DESTDIR)$(LIBDIR) install-lib-main install-lib-samples
    1.32  
    1.33  install-lib-main: $(DESTDIR)$(LIBDIR)
    1.34 -	@for src_dir in config kconfig patches scripts tools; do                        \
    1.35 +	@for src_dir in config kconfig patches scripts; do                              \
    1.36  	     echo "  INST   '$${src_dir}/'";                                            \
    1.37  	     tar cf - --exclude=.svn $${src_dir} |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -); \
    1.38  	 done
    1.39 -	@rm -f "$(DESTDIR)$(LIBDIR)/tools/addToolVersion.sh"
    1.40 +	@rm -f "$(DESTDIR)$(LIBDIR)/scripts/addToolVersion.sh"
    1.41  	@echo "  INST   'steps.mk'"
    1.42  	@install -m 644 steps.mk "$(DESTDIR)$(LIBDIR)/steps.mk"
    1.43