mirror of https://github.com/hak5/openwrt.git
parent
a5b8312036
commit
043df62150
|
@ -38,21 +38,19 @@ endif
|
||||||
endif
|
endif
|
||||||
export OPENWRTVERSION
|
export OPENWRTVERSION
|
||||||
|
|
||||||
.pkginfo:
|
.pkginfo: FORCE
|
||||||
|
ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package)
|
||||||
@echo Collecting package info...
|
@echo Collecting package info...
|
||||||
@-for makefile in package/*/Makefile; do \
|
@-for makefile in package/*/Makefile; do \
|
||||||
echo Source-Makefile: $$makefile; \
|
echo Source-Makefile: $$makefile; \
|
||||||
$(MAKE) DUMP=1 -f $$makefile 2>&- || true; \
|
$(MAKE) DUMP=1 -f $$makefile 2>&- || true; \
|
||||||
done > $@
|
done > $@
|
||||||
|
|
||||||
ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package)
|
|
||||||
.pkginfo: pkginfo-clean
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.config.in: .pkginfo
|
.config.in: .pkginfo
|
||||||
./scripts/gen_menuconfig.pl < $< > $@ || rm -f $@
|
./scripts/gen_menuconfig.pl < $< > $@ || rm -f $@
|
||||||
|
|
||||||
pkginfo-clean:
|
pkginfo-clean: FORCE
|
||||||
-rm -f .pkginfo .config.in
|
-rm -f .pkginfo .config.in
|
||||||
|
|
||||||
scripts/config/mconf: .config.in
|
scripts/config/mconf: .config.in
|
||||||
|
@ -70,6 +68,5 @@ config: scripts/config/conf
|
||||||
config-clean:
|
config-clean:
|
||||||
$(MAKE) -C scripts/config clean
|
$(MAKE) -C scripts/config clean
|
||||||
|
|
||||||
.PHONY: pkginfo-clean
|
.PHONY: FORCE
|
||||||
|
FORCE:
|
||||||
|
|
||||||
|
|
|
@ -240,20 +240,21 @@ else
|
||||||
$(PACKAGE_DIR):
|
$(PACKAGE_DIR):
|
||||||
mkdir -p $@
|
mkdir -p $@
|
||||||
|
|
||||||
source: $(DL_DIR)/$(PKG_SOURCE)
|
source: FORCE $(DL_DIR)/$(PKG_SOURCE)
|
||||||
prepare: $(PKG_BUILD_DIR)/.prepared
|
prepare: FORCE $(PKG_BUILD_DIR)/.prepared
|
||||||
configure: $(PKG_BUILD_DIR)/.configured
|
configure: FORCE $(PKG_BUILD_DIR)/.configured
|
||||||
|
|
||||||
compile-targets:
|
compile-targets: FORCE
|
||||||
compile: compile-targets
|
compile: FORCE compile-targets
|
||||||
|
|
||||||
install-targets:
|
install-targets: FORCE
|
||||||
install: install-targets
|
install: FORCE install-targets
|
||||||
|
|
||||||
clean-targets:
|
clean-targets: FORCE
|
||||||
clean:
|
clean: FORCE
|
||||||
@$(MAKE) clean-targets
|
@$(MAKE) clean-targets
|
||||||
rm -rf $(PKG_BUILD_DIR)
|
rm -rf $(PKG_BUILD_DIR)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: all source prepare compile install clean dumpinfo compile-targets install-targets clean-targets
|
.PHONY: FORCE
|
||||||
|
FORCE:
|
||||||
|
|
Loading…
Reference in New Issue