projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[etrax] Comment out a debug message on usb host driver
[openwrt.git]
/
tools
/
firmware-utils
/
Makefile
diff --git
a/tools/firmware-utils/Makefile
b/tools/firmware-utils/Makefile
index
c9d9bae
..
e2b6cf4
100644
(file)
--- a/
tools/firmware-utils/Makefile
+++ b/
tools/firmware-utils/Makefile
@@
-1,19
+1,21
@@
-#
-# Copyright (C) 2006 OpenWrt.org
+#
+# 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
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
-include $(INCLUDE_DIR)/host-build.mk
PKG_NAME := firmware-utils
PKG_NAME := firmware-utils
-PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/firmware-utils
-CFLAGS := -O2 -I $(STAGING_DIR)/include-host -include endian.h
+include $(INCLUDE_DIR)/host-build.mk
define cc
define cc
- $(CC) $(CFLAGS) -o $(PKG_BUILD_DIR)/bin/$(1) src/$(1).c
+ $(CC) $(HOST_CFLAGS) -include endian.h -o $(PKG_BUILD_DIR)/bin/$(1) src/$(1).c $(2)
+endef
+
+define cc2
+ $(CC) $(HOST_CFLAGS) -include endian.h -o $(PKG_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
endef
define Build/Compile
endef
define Build/Compile
@@
-26,12
+28,21
@@
define Build/Compile
$(call cc,ptgen)
$(call cc,airlink)
$(call cc,srec2bin)
$(call cc,ptgen)
$(call cc,airlink)
$(call cc,srec2bin)
- $(call cc,mksyshdr)
$(call cc,mkmylofw)
$(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 cc2,mkplanexfw sha1)
endef
define Build/Install
endef
define Build/Install
- $(
CP) $(PKG_BUILD_DIR)/bin/* $(STAGING_DIR)/bin
+ $(
INSTALL_BIN) $(PKG_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/
endef
$(eval $(call HostBuild))
endef
$(eval $(call HostBuild))
This page took
0.020532 seconds
and
4
git commands to generate.