1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 11:39:26 +03:00
openwrt-xburst/target/Makefile
nbd 1b14a20c70 fix and enable the sdk
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4037 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-06-21 03:17:13 +00:00

35 lines
787 B
Makefile

include $(TOPDIR)/rules.mk
all: install
$(BIN_DIR):
mkdir -p $(BIN_DIR)
TARGETS-y := linux utils
TARGETS-$(CONFIG_SDK) += sdk
linux-compile: utils-install
linux-install: $(BIN_DIR)
sdk-compile: linux-install
download: $(patsubst %,%-source,$(TARGETS-y))
prepare: linux-prepare
compile: linux-compile
install: image_clean $(patsubst %,%-install,$(TARGETS-y))
clean: $(patsubst %,%-clean,$(TARGETS-y)) 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