mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:16:16 +02:00
859e8f7f7d
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4032 3c298f89-4303-0410-b956-a3cf2f4a3e73
33 lines
700 B
Makefile
33 lines
700 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
all: install
|
|
|
|
$(BIN_DIR):
|
|
mkdir -p $(BIN_DIR)
|
|
|
|
TARGETS:=linux utils
|
|
|
|
linux-compile: utils-install
|
|
linux-install: $(BIN_DIR)
|
|
|
|
download: $(patsubst %,%-source,$(TARGETS))
|
|
prepare: linux-prepare
|
|
compile: linux-compile
|
|
install: image_clean linux-install
|
|
clean: $(patsubst %,%-clean,$(TARGETS)) image_clean
|
|
|
|
image_clean: FORCE
|
|
rm -f $(BIN_DIR)/openwrt-*
|
|
|
|
%-clean: FORCE
|
|
$(MAKE) -C $(patsubst %-clean,%,$@) clean
|
|
%-source: FORCE
|
|
$(MAKE) -C $(patsubst %-source,%,$@) source
|
|
%-prepare: FORCE
|
|
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
|
|
%-compile: %-prepare
|
|
$(MAKE) -C $(patsubst %-compile,%,$@) compile
|
|
%-install: %-compile
|
|
$(MAKE) -C $(patsubst %-install,%,$@) install
|
|
|