diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-12-16 18:12:34 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-12-16 18:12:34 +0000 |
commit | 65bb3ac67c741c46aa27ccd98cb7930a2b731306 (patch) | |
tree | 34841a72e903ae6054e94c588a48d66fe0f9619c /Makefile.in | |
parent | 79154260923bf6f20c7503c91f714ac2d1c7eb3b (diff) | |
download | crosstool-ng-65bb3ac67c741c46aa27ccd98cb7930a2b731306.tar.gz crosstool-ng-65bb3ac67c741c46aa27ccd98cb7930a2b731306.tar.bz2 crosstool-ng-65bb3ac67c741c46aa27ccd98cb7930a2b731306.zip |
Get rid of the tols/ directory:
- move config.guess and config.sub from tools/ into scripts/
- update the scripts and makefile fragments accordingly
/trunk/Makefile.in | 10 5 5 0 +++++-----
/trunk/scripts/functions | 16 8 8 0 ++++++++--------
/trunk/scripts/scripts.mk | 28 13 15 0 +++++++++++++---------------
/trunk/ct-ng.in | 4 2 2 0 ++--
4 files changed, 28 insertions(+), 30 deletions(-)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 598b02cb..9b0fbbb9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -39,7 +39,7 @@ TARGETS := bin lib doc man build: $(patsubst %,build-%,$(TARGETS)) -install: real-install +install: build real-install clean: $(patsubst %,clean-%,$(TARGETS)) @@ -100,7 +100,7 @@ clean-man: ifeq ($(strip $(LOCAL)),1) -real-install: build +real-install: @echo " CHMOD 'ct-ng'" @chmod a+x ct-ng @@ -112,7 +112,7 @@ else #-------------------------------------- # 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-bin: $(DESTDIR)$(BINDIR) 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" |