diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-18 21:12:18 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-18 21:12:18 +0000 |
commit | 0b287401627a278626d570aecb1440c259babb66 (patch) | |
tree | 6d92e02e200b8fd692c14a85c5f7f8959ae8fb8f /target/Makefile | |
parent | bf7455ea57537a2871912c971b14ad6aa05c4346 (diff) |
add prereq checks for target/linux/* and target/image/*, check for fdisk for the x86 builds
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5569 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/Makefile b/target/Makefile index dc21033e5..c00eea0d6 100644 --- a/target/Makefile +++ b/target/Makefile @@ -25,6 +25,10 @@ compile: linux-compile image_compile install: image_clean $(patsubst %,%-install,$(TARGETS-y)) image_install clean: $(patsubst %,%-clean,$(TARGETS-y)) image_clean +prereq: FORCE + $(MAKE) -C linux/$(BOARD)-$(KERNEL) prereq + $(MAKE) -C image/$(BOARD) prereq + image_clean: FORCE $(MAKE) -C image/$(BOARD) clean rm -f $(BIN_DIR)/openwrt-* |