2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-04-02 19:43:51 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-06-05 00:57:59 +03:00
|
|
|
PKG_NAME := lzma-loader
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
2005-04-02 19:43:51 +03:00
|
|
|
|
2005-09-01 23:07:42 +03:00
|
|
|
$(PKG_BUILD_DIR)/.prepared:
|
|
|
|
mkdir $(PKG_BUILD_DIR)
|
2006-02-02 01:53:19 +02:00
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
2005-09-01 23:07:42 +03:00
|
|
|
touch $@
|
2005-04-02 19:43:51 +03:00
|
|
|
|
2005-09-01 23:07:42 +03:00
|
|
|
$(PKG_BUILD_DIR)/loader.gz: $(PKG_BUILD_DIR)/.prepared
|
2006-08-04 20:14:36 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) CC="$(TARGET_CC)" \
|
|
|
|
LD="$(TARGET_CROSS)ld" CROSS_COMPILE="$(TARGET_CROSS)"
|
2005-04-02 19:43:51 +03:00
|
|
|
|
2006-07-21 20:00:14 +03:00
|
|
|
download:
|
2005-09-01 23:07:42 +03:00
|
|
|
prepare: $(PKG_BUILD_DIR)/.prepared
|
2006-06-05 00:57:59 +03:00
|
|
|
compile: $(PKG_BUILD_DIR)/loader.gz
|
2005-04-02 19:43:51 +03:00
|
|
|
install:
|
|
|
|
|
2006-06-05 00:57:59 +03:00
|
|
|
ifneq ($(TARGET),)
|
|
|
|
install: compile
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/loader.gz $(PKG_BUILD_DIR)/loader.elf $(TARGET)/
|
|
|
|
endif
|
|
|
|
|
2005-04-02 19:43:51 +03:00
|
|
|
clean:
|
|
|
|
rm -rf $(PKG_BUILD_DIR)
|