1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-19 20:50:13 +03:00
openwrt-xburst/target/Makefile
wbx 1f8c7eef48 remove unused variable
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1507 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-07-20 23:11:14 +00:00

31 lines
617 B
Makefile

include $(TOPDIR)/rules.mk
all: install
$(BIN_DIR):
mkdir -p $(BIN_DIR)
linux-compile: utils-install lzma-install
linux-install: $(BIN_DIR)
prepare:
compile: linux-compile
install: image_clean linux-install
clean: linux-clean utils-clean lzma-clean image_clean
image_clean:
rm -f $(BIN_DIR)/openwrt-*
%-clean:
$(MAKE) -C $(patsubst %-clean,%,$@) clean
%-prepare:
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
$(MAKE) -C $(patsubst %-compile,%,$@) compile
%-rebuild:
$(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild
%-install: %-compile
$(MAKE) -C $(patsubst %-install,%,$@) install