diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-02-09 23:42:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-02-09 23:42:23 +0000 |
commit | e0c8160a383b3ab3037c2e99c61c076ac94c9255 (patch) | |
tree | 89da1ae82d75014fa2d127b2e5d2a450d0b9876c | |
parent | eb8e61f0107bbd70d6e0ec63879e3e8a6b2908d6 (diff) |
allow people to run the hostutils targets without having a .config file
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index a3ed3f7f0..bf3608310 100644 --- a/Makefile.in +++ b/Makefile.in @@ -458,8 +458,6 @@ ifeq ($(HAVE_SHARED),y) fi endif -hostutils: - $(Q)$(MAKE) CROSS="$(CROSS)" CC="$(CC)" HOSTCC="$(HOSTCC)" -C utils hostutils utils: $(Q)$(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils @@ -467,11 +465,14 @@ utils: install_utils: utils $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils utils_install +endif # ifeq ($(HAVE_DOT_CONFIG),y) + +hostutils: + $(Q)$(MAKE) CROSS="$(CROSS)" CC="$(CC)" HOSTCC="$(HOSTCC)" -C utils hostutils + install_hostutils: hostutils $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils utils_install DOTHOST=.host -endif # ifeq ($(HAVE_DOT_CONFIG),y) - include/bits include/config: @$(disp_mkdir) $(Q)$(INSTALL) -d $@ |