0060b0b8f7c9517b49e0127dd38c385a0ec16ef8
[openwrt/svn-archive/archive.git] / devel / build-essential / 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 @BUILD_DEVELOPER_SYSTEM
22 endef
23
24 define Build/Compile
25
26 endef
27
28 define Package/build-essential/install
29 cp -r ./files/* $(1)
30 endef
31
32 $(eval $(call BuildPackage,build-essential))