1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 03:34:15 +03:00
openwrt-xburst/target/linux/image/brcm/lzma-loader/Makefile
nbd 4899b6c696 move lzma loader source in cvs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1823 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-09-01 20:07:42 +00:00

33 lines
685 B
Makefile

# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME := loader
PKG_VERSION := 0.04
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
$(PKG_BUILD_DIR)/.prepared:
mkdir $(PKG_BUILD_DIR)
cp -fpR ./src/* $(PKG_BUILD_DIR)/
touch $@
$(PKG_BUILD_DIR)/loader.gz: $(PKG_BUILD_DIR)/.prepared
$(MAKE) -C $(PKG_BUILD_DIR) CC=$(TARGET_CC) \
LD=$(TARGET_CROSS)ld CROSS_COMPILE=$(TARGET_CROSS)
$(BUILD_DIR)/loader.gz: $(PKG_BUILD_DIR)/loader.gz
cp $< $@
$(BUILD_DIR)/loader.elf: $(PKG_BUILD_DIR)/loader.o
cp $< $@
source:
prepare: $(PKG_BUILD_DIR)/.prepared
compile: $(BUILD_DIR)/loader.gz $(BUILD_DIR)/loader.elf
install:
clean:
rm -rf $(PKG_BUILD_DIR)
rm -f $(BUILD_DIR)/loader.gz