X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=Makefile;h=bee47c45cc509f3a133d99cfac0fd9a8589cb3e7;hb=c3a00eb1c4b70bedc112fa93af782f823e528be1;hp=a3d5720db3b2b0eb7df3e8658c4c77e801da6d70;hpb=efd05a509fa1f308a51012bb937ef136abad4f22;p=librecmc%2Flibrecmc.git diff --git a/Makefile b/Makefile index a3d5720db3..bee47c45cc 100644 --- a/Makefile +++ b/Makefile @@ -39,53 +39,27 @@ else endif export OPENWRTVERSION -ifneq ($(shell ./scripts/timestamp.pl -p tmp/.pkginfo package scripts include),tmp/.pkginfo) - tmp/.pkginfo: FORCE -endif - -ifneq ($(shell ./scripts/timestamp.pl -p tmp/.targetinfo target/linux scripts include),tmp/.targetinfo) - tmp/.targetinfo: FORCE -endif - ifeq ($(FORCE),) .config scripts/config/conf scripts/config/mconf: tmp/.prereq-build world: tmp/.prereq-packages tmp/.prereq-target endif -ifeq ($(IS_TTY),1) - define progress - printf "\033[M\r$(1)" >&2; - endef -endif +tmp/.pkginfo: FORCE + @mkdir -p tmp/info + @$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="pkginfo" SCAN_DIR="package" SCAN_NAME="package" SCAN_DEPS="$(shell ls include/package*.mk) include/kernel.mk" SCAN_EXTRA="" -define dumpinfo - @mkdir -p tmp - @echo -n Collecting $(2) info... - @-for dir in $(1)/*/; do \ - [ -f "$${dir}/Makefile" ] || continue; \ - $(call progress,Collecting $(2) info: $${dir%%/}) \ - echo Source-Makefile: $${dir}Makefile; \ - $(NO_TRACE_MAKE) --no-print-dir DUMP=1 -C $$dir 3>/dev/null || echo "ERROR: please fix $${dir}Makefile" >&2; \ - echo; \ - done > $@ - @($(call progress,Collecting $(2) info: done)) - @echo -endef - -tmp/.pkginfo: - $(call dumpinfo,package,package) - -tmp/.targetinfo: - $(call dumpinfo,target/linux,target) +tmp/.targetinfo: FORCE + @mkdir -p tmp/info + @$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="targetinfo" SCAN_DIR="target/linux" SCAN_NAME="target" SCAN_DEPS="$(shell ls include/kernel*.mk)" SCAN_EXTRA="" tmpinfo-clean: FORCE @-rm -rf tmp/.pkginfo tmp/.targetinfo tmp/.config.in: tmp/.pkginfo - @./scripts/gen_package_config.pl < $< > $@ || rm -f $@ + @./scripts/metadata.pl package_config < $< > $@ || rm -f $@ tmp/.config-target.in: tmp/.targetinfo - @./scripts/gen_target_config.pl < $< > $@ || rm -f $@ + @./scripts/metadata.pl target_config < $< > $@ || rm -f $@ .config: ./scripts/config/conf tmp/.config.in tmp/.config-target.in @[ -f .config ] || $(NO_TRACE_MAKE) menuconfig @@ -113,10 +87,19 @@ oldconfig: scripts/config/conf tmp/.config.in tmp/.config-target.in FORCE menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE $< Config.in -package/%: tmp/.pkginfo tmp/.targetinfo FORCE +kernel_menuconfig: .config FORCE + -$(MAKE) target/linux-prepare + $(NO_TRACE_MAKE) -C target/linux menuconfig + +scan_packages: + @$(NO_TRACE_MAKE) -s tmp/.pkginfo tmp/.targetinfo + + +package/%: scan_packages $(MAKE) -C package $(patsubst package/%,%,$@) -target/%: tmp/.pkginfo tmp/.targetinfo FORCE +target/%: scan_packages + @$(NO_TRACE_MAKE) -s tmp/.pkginfo tmp/.targetinfo $(MAKE) -C target $(patsubst target/%,%,$@) tools/%: FORCE @@ -175,7 +158,7 @@ clean: FORCE dirclean: clean rm -rf staging_dir_* toolchain_build_* tool_build -distclean: dirclean config-clean +distclean: dirclean config-clean symlinkclean docclean rm -rf dl help: @@ -187,10 +170,10 @@ doc: docclean: $(MAKE) -C docs/ clean -symlinks: - scripts/feeds.sh $(CONFIG_SOURCE_FEEDS) +symlinkclean: + find package -type l | xargs rm -f -.SILENT: clean dirclean distclean config-clean download world +.SILENT: clean dirclean distclean symlinkclean config-clean download world FORCE: ; .PHONY: FORCE help %: ;