mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:20:37 +02:00
868654d8f5
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19487 3c298f89-4303-0410-b956-a3cf2f4a3e73
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME := firmware-utils
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
define cc
|
|
$(CC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
|
|
endef
|
|
|
|
|
|
define Host/Compile
|
|
mkdir -p $(HOST_BUILD_DIR)/bin
|
|
$(call cc,addpattern)
|
|
$(call cc,trx)
|
|
$(call cc,motorola-bin)
|
|
$(call cc,dgfirmware)
|
|
$(call cc,trx2usr)
|
|
$(call cc,ptgen)
|
|
$(call cc,airlink)
|
|
$(call cc,srec2bin)
|
|
$(call cc,mkmylofw)
|
|
$(call cc,mkcsysimg)
|
|
$(call cc,mkzynfw)
|
|
$(call cc,lzma2eva,-lz)
|
|
$(call cc,mkcasfw)
|
|
$(call cc,mkfwimage,-lz)
|
|
$(call cc,mkfwimage2,-lz)
|
|
$(call cc,imagetag)
|
|
$(call cc,add_header)
|
|
$(call cc,makeamitbin)
|
|
$(call cc,encode_crc)
|
|
$(call cc,nand_ecc)
|
|
$(call cc,mkplanexfw sha1)
|
|
$(call cc,mktplinkfw md5)
|
|
$(call cc,pc1crypt)
|
|
$(call cc,osbridge-crc)
|
|
$(call cc,wrt400n cyg_crc32)
|
|
$(call cc,wndr3700)
|
|
$(call cc,mkdniimg)
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|