diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 13:08:20 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 13:08:20 +1000 |
commit | 6a6efd31038d7afe977e3059508ae863e65cbdf5 (patch) | |
tree | 5cd69a751e893b83176751c80fcea7a7afeed1ae /Makefile | |
parent | a6a2325ecf402054132daae169f71edb0fb849e3 (diff) | |
parent | 29082231d0cb1a5b327de5d515b16f332d4dbdaf (diff) | |
download | busybox-w32-6a6efd31038d7afe977e3059508ae863e65cbdf5.tar.gz busybox-w32-6a6efd31038d7afe977e3059508ae863e65cbdf5.tar.bz2 busybox-w32-6a6efd31038d7afe977e3059508ae863e65cbdf5.zip |
Merge branch 'origin/master' (early part)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | VERSION = 1 | 1 | VERSION = 1 |
2 | PATCHLEVEL = 17 | 2 | PATCHLEVEL = 18 |
3 | SUBLEVEL = 0 | 3 | SUBLEVEL = 0 |
4 | EXTRAVERSION = .git | 4 | EXTRAVERSION = .git |
5 | NAME = Unnamed | 5 | NAME = Unnamed |
@@ -361,7 +361,7 @@ scripts/basic/%: scripts_basic ; | |||
361 | 361 | ||
362 | # This target generates Kbuild's and Config.in's from *.c files | 362 | # This target generates Kbuild's and Config.in's from *.c files |
363 | PHONY += gen_build_files | 363 | PHONY += gen_build_files |
364 | gen_build_files: | 364 | gen_build_files: $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) |
365 | $(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree) | 365 | $(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree) |
366 | 366 | ||
367 | # bbox: we have helpers in applets/ | 367 | # bbox: we have helpers in applets/ |
@@ -511,9 +511,11 @@ include $(srctree)/Makefile.flags | |||
511 | # with it and forgot to run make oldconfig. | 511 | # with it and forgot to run make oldconfig. |
512 | # If kconfig.d is missing then we are probarly in a cleaned tree so | 512 | # If kconfig.d is missing then we are probarly in a cleaned tree so |
513 | # we execute the config step to be sure to catch updated Kconfig files | 513 | # we execute the config step to be sure to catch updated Kconfig files |
514 | include/autoconf.h: .kconfig.d .config | 514 | include/autoconf.h: .kconfig.d .config $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) | gen_build_files |
515 | $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig | 515 | $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig |
516 | 516 | ||
517 | include/usage.h: gen_build_files | ||
518 | |||
517 | else | 519 | else |
518 | # Dummy target needed, because used as prerequisite | 520 | # Dummy target needed, because used as prerequisite |
519 | include/autoconf.h: ; | 521 | include/autoconf.h: ; |