f22611d644f1faba1776e8edfe0a73e638090516
[openwrt/svn-archive/archive.git] / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # blogic@openwrt.org
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=build-essential
12 PKG_RELEASE:=1
13 PKG_VERSION:=1
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/build-essential
18 SECTION:=devel
19 CATEGORY:=Development
20 TITLE:=Build essentials
21 DEPENDS=+gcc +make +binutils +patch +diffutils @NO_STRIP
22 PKGARCH:=all
23 endef
24
25 define Build/Compile
26
27 endef
28
29 define Package/build-essential/install
30 cp -r ./files/* $(1)
31 endef
32
33 $(eval $(call BuildPackage,build-essential))