build system cleanup. move shared include files into $(TOPDIR)/include, move lzma...
[openwrt.git] / package / busybox / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=busybox
6 PKG_VERSION:=1.1.3
7 PKG_RELEASE:=1
8
9 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
10 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
11 PKG_SOURCE_URL:=http://www.busybox.net/downloads
12 PKG_MD5SUM:=19a0b475169335f17e421cf644616fe7
13 PKG_CAT:=bzcat
14
15 include $(TOPDIR)/include/package.mk
16
17 define Package/busybox
18 SECTION:=base
19 CATEGORY:=Base system
20 MENU:=1
21 DEFAULT:=y
22 TITLE:=Core utilities for embedded Linux
23 DESCRIPTION:=The Swiss Army Knife of embedded Linux. \\\
24 It slices, it dices, it makes Julian Fries.
25 URL:=http://busybox.net/
26 CONFIG:=\\\
27         menu "Configuration" \\\
28                 depends on PACKAGE_busybox \\\
29                 source "$(SOURCE)/config/Config.in" \\\
30         endmenu
31 endef
32
33 define Build/Configure
34         $(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
35         yes '' | $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" -C $(PKG_BUILD_DIR) oldconfig
36 endef
37
38 define Package/busybox/install
39         $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" PREFIX="$(1)" \
40                 EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) install
41         -rm -rf $(1)/lib64
42 endef
43
44 $(eval $(call BuildPackage,busybox))