summaryrefslogtreecommitdiff
path: root/package/make/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/make/Makefile')
-rw-r--r--package/make/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/make/Makefile b/package/make/Makefile
new file mode 100644
index 000000000..e8af2ed26
--- /dev/null
+++ b/package/make/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= make
+PKG_VERSION:= 3.81
+PKG_RELEASE:= 1
+PKG_MD5SUM:= a4e9494ac6dc3f6b0c5ff75c5d52abba
+PKG_DESCR:= GNU make
+PKG_SECTION:= misc
+PKG_URL:= http://www.gnu.org/software/make
+PKG_SITES:= ${MASTER_SITE_GNU:=make/}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,MAKE,make,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE= gnu
+BUILD_STYLE= auto
+INSTALL_STYLE= auto
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_MAKE)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/make $(IDIR_MAKE)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk