summaryrefslogtreecommitdiffstats
path: root/tools/firmware-utils/Makefile
blob: 24cf88eecd6f247d35450917f15eeaec50e5771f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 
# Copyright (C) 2006 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
PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/firmware-utils

include $(INCLUDE_DIR)/host-build.mk

CFLAGS := -O2 -I $(STAGING_DIR)/include-host -include endian.h

define cc
	$(CC) $(CFLAGS) -o $(PKG_BUILD_DIR)/bin/$(1) src/$(1).c
endef

define Build/Compile
	mkdir -p $(PKG_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)
endef

define Build/Install
	$(CP) $(PKG_BUILD_DIR)/bin/* $(STAGING_DIR)/bin
endef

$(eval $(call HostBuild))