da2bd6bc7990aab988873a83183aaafe705f6570
[openwrt.git] / tools / wrt350nv2-builder / Makefile
1
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=wrt350nv2-builder
11 PKG_VERSION:=2.4
12
13 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/${PKG_NAME}-$(PKG_VERSION)
14
15 include $(INCLUDE_DIR)/host-build.mk
16
17 define Host/Compile
18         $(HOSTCC) $(HOST_CFLAGS) -c src/md5.c -o $(HOST_BUILD_DIR)/md5.o
19         $(HOSTCC) $(HOST_CFLAGS) -c src/ioapi.c -o $(HOST_BUILD_DIR)/ioapi.o
20         $(HOSTCC) $(HOST_CFLAGS) -c src/wrt350nv2-builder.c -o $(HOST_BUILD_DIR)/wrt350nv2-builder.o
21         $(HOSTCC) $(HOST_CFLAGS) $(HOST_LDFLAGS) $(HOST_STATIC_LINKING) -o $(HOST_BUILD_DIR)/wrt350nv2-builder \
22                 $(HOST_BUILD_DIR)/wrt350nv2-builder.o $(HOST_BUILD_DIR)/md5.o $(HOST_BUILD_DIR)/ioapi.o
23 endef
24
25 define Host/Install
26         $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
27         $(INSTALL_BIN) $(HOST_BUILD_DIR)/wrt350nv2-builder $(STAGING_DIR_HOST)/bin/
28 # optionally the builder can add a u-boot binary to create a complete webupgrade image, but this is not mandatory
29 # u-boot images from stock firmware are available at ftp://ftp.maddes.net/openwrt/trunk/orion/stock/binaries/
30         [ ! -f "files/u-boot.bin" ] || ( \
31                 $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/wrt350nv2-builder; \
32                 $(CP) files/u-boot.bin $(STAGING_DIR_HOST)/share/wrt350nv2-builder/; )
33 endef
34
35 define Host/Clean
36         rm -f $(STAGING_DIR_HOST)/bin/wrt350nv2-builder
37         rm -f $(STAGING_DIR_HOST)/share/wrt350nv2-builder
38 endef
39
40 $(eval $(call HostBuild))