OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 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 | |||
8 | include $(TOPDIR)/rules.mk |
||
9 | include $(INCLUDE_DIR)/kernel.mk |
||
10 | |||
11 | PKG_NAME:=dfboot |
||
12 | PKG_VERSION:=0.1 |
||
13 | PKG_RELEASE:=1 |
||
14 | |||
15 | PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME) |
||
16 | |||
17 | include $(INCLUDE_DIR)/package.mk |
||
18 | |||
19 | define Build/Prepare |
||
20 | mkdir -p $(PKG_BUILD_DIR) |
||
21 | $(CP) ./src/* $(PKG_BUILD_DIR)/ |
||
22 | endef |
||
23 | |||
24 | define Build/Compile |
||
25 | $(MAKE) -C $(PKG_BUILD_DIR) \ |
||
26 | $(TARGET_CONFIGURE_OPTS) \ |
||
27 | CFLAGS="$(TARGET_CFLAGS)" \ |
||
28 | LDFLAGS="$(LIBGCC_S)" |
||
29 | endef |
||
30 | |||
31 | define Build/InstallDev |
||
32 | dd if=$(PKG_BUILD_DIR)/binary/dfboot.bin of=$(PKG_BUILD_DIR)/binary/dfboot.block bs=32k count=1 conv=sync |
||
33 | endef |
||
34 | |||
35 | $(eval $(call Build/DefaultTargets)) |