summaryrefslogtreecommitdiff
path: root/core/mk/bmake.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-03-18 23:45:27 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-03-18 23:45:27 +0100
commitef94bcb8905c8c8fefc272dbcb2d5ee0c4efbe35 (patch)
treee8e85268168e09221e23cdbb4639e47109988d04 /core/mk/bmake.mk
parentfb516edcaeaa02e435316622b2bcc5314b42d529 (diff)
downloadembtoolkit-ef94bcb8905c8c8fefc272dbcb2d5ee0c4efbe35.tar.gz
embtoolkit-ef94bcb8905c8c8fefc272dbcb2d5ee0c4efbe35.tar.bz2
embtoolkit-ef94bcb8905c8c8fefc272dbcb2d5ee0c4efbe35.tar.xz
Move mk/ to core/
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'core/mk/bmake.mk')
-rw-r--r--core/mk/bmake.mk51
1 files changed, 51 insertions, 0 deletions
diff --git a/core/mk/bmake.mk b/core/mk/bmake.mk
new file mode 100644
index 0000000..4dccf83
--- /dev/null
+++ b/core/mk/bmake.mk
@@ -0,0 +1,51 @@
+################################################################################
+# Embtoolkit
+# Copyright(C) 2013 Abdoulaye Walsimou GAYE.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+################################################################################
+#
+# \file bmake.mk
+# \brief bmake.mk of Embtoolkit.
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date April 2013
+################################################################################
+
+BMAKE_NAME := bmake
+BMAKE_VERSION := $(call embtk_get_pkgversion,bmake)
+BMAKE_SITE := http://ftp.netbsd.org/pub/NetBSD/misc/sjg
+BMAKE_PACKAGE := bmake-$(BMAKE_VERSION).tar.gz
+BMAKE_SRC_DIR := $(embtk_toolsb)/bmake
+BMAKE_BUILD_DIR := $(embtk_toolsb)/bmake-build
+
+define __embtk_install_bmake
+ $(call embtk_pinfo,"Install bmake-$(BMAKE_VERSION)...")
+ $(call embtk_download_pkg,bmake)
+ $(call embtk_decompress_pkg,bmake)
+ cd $(BMAKE_BUILD_DIR) && MAKEFLAGS="" \
+ $(BMAKE_SRC_DIR)/boot-strap \
+ --prefix=$(embtk_htools)/usr --install
+ $(call __embtk_setinstalled_pkg,bmake)
+ $(call __embtk_pkg_gen_dotkconfig_f,bmake)
+ $(eval __embtk_bmake_installed := y)
+endef
+
+define embtk_install_bmake
+ $(if $(call __embtk_pkg_runrecipe-y,bmake),$(__embtk_install_bmake))
+endef
+
+define embtk_cleanup_bmake
+ rm -rf $(BMAKE_BUILD_DIR)
+endef