diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-02 15:43:20 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-02 15:43:20 +0000 |
commit | 5fe51654d35ae05858a0d1d94e6783a98f09fe47 (patch) | |
tree | 4c97b6715a7c55f53050126234edc9c979c1781b | |
parent | e6e45f86ac2a97420dd80e7964251a662f8aa094 (diff) |
include Rules.mak after noconfig_targets, else it does not pull in .config
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | extra/scripts/Makefile.libs.lvl0 | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -9,7 +9,7 @@ TOPDIR=./ top_srcdir=$(TOPDIR) top_builddir=./ -include $(top_builddir)Rules.mak +#include $(top_builddir)Rules.mak #all: libs include Makefile.in include $(top_srcdir)Makerules diff --git a/Makefile.in b/Makefile.in index 5e1fb7440..b3340ba67 100644 --- a/Makefile.in +++ b/Makefile.in @@ -12,6 +12,8 @@ noconfig_targets := menuconfig config oldconfig randconfig \ defconfig allyesconfig allnoconfig clean distclean \ release dist tags +include $(top_builddir)Rules.mak + # need to have libc.so built, before we can build the others ifeq ($(HAVE_SHARED),y) PRE_DIRS = ldso libc diff --git a/extra/scripts/Makefile.libs.lvl0 b/extra/scripts/Makefile.libs.lvl0 index 958d9634f..655d04313 100644 --- a/extra/scripts/Makefile.libs.lvl0 +++ b/extra/scripts/Makefile.libs.lvl0 @@ -9,7 +9,7 @@ TOPDIR=./ top_srcdir=$(TOPDIR) top_builddir=./ -include $(top_builddir)Rules.mak +#include $(top_builddir)Rules.mak #all: libs include Makefile.in include $(top_srcdir)Makerules |