next round of build system cleanup - convert package/ to new structure
[openwrt/svn-archive/archive.git] / tools / firmware-utils / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME := firmware-utils
10 PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/firmware-utils
11
12 include $(INCLUDE_DIR)/host-build.mk
13
14 CFLAGS := -O2 -I $(STAGING_DIR)/include-host -include endian.h
15
16 define cc
17 $(CC) $(CFLAGS) -o $(PKG_BUILD_DIR)/bin/$(1) src/$(1).c
18 endef
19
20 define Build/Compile
21 mkdir -p $(PKG_BUILD_DIR)/bin
22 $(call cc,addpattern)
23 $(call cc,trx)
24 $(call cc,motorola-bin)
25 $(call cc,dgfirmware)
26 $(call cc,trx2usr)
27 $(call cc,ptgen)
28 $(call cc,airlink)
29 $(call cc,srec2bin)
30 $(call cc,mkmylofw)
31 $(call cc,mkcsysimg)
32 endef
33
34 define Build/Install
35 $(CP) $(PKG_BUILD_DIR)/bin/* $(STAGING_DIR)/bin
36 endef
37
38 $(eval $(call HostBuild))