summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-06-20 12:29:15 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-06-20 12:29:15 +0200
commit0844658bf38576120af54f70d24542f1c8e466b5 (patch)
treef0a8d47bdd508749d5aa81a4211bb4e2fa6872c4
parent31c2a2c053c1f89ab8587cecd22ec761c471812e (diff)
downloadembtoolkit-0844658bf38576120af54f70d24542f1c8e466b5.tar.gz
embtoolkit-0844658bf38576120af54f70d24542f1c8e466b5.tar.bz2
embtoolkit-0844658bf38576120af54f70d24542f1c8e466b5.tar.xz
Rootfs: add zlib Makefile
Signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
-rw-r--r--mk/zlib.mk51
1 files changed, 51 insertions, 0 deletions
diff --git a/mk/zlib.mk b/mk/zlib.mk
new file mode 100644
index 0000000..2f0d6b9
--- /dev/null
+++ b/mk/zlib.mk
@@ -0,0 +1,51 @@
+#########################################################################################
+# GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
+# Copyright(C) 2009 GAYE Abdoulaye Walsimou. All rights reserved.
+#
+# This program is free software; you can distribute it and/or modify it
+# under the terms of the GNU General Public License
+# (Version 2 or later) published by the Free Software Foundation.
+#
+# This program is distributed in the hope 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, write to the Free Software Foundation, Inc.,
+# 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
+#########################################################################################
+#
+# \file zlib.mk
+# \brief zlib.mk of Embtoolkit.
+# \author GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
+# \date June 2009
+#########################################################################################
+
+ZLIB_VERSION := 1.2.3
+ZLIB_SITE := http://www.gzip.org/zlib
+ZLIB_PACKAGE := zlib-$(ZLIB_VERSION).tar.bz2
+ZLIB_HOST_BUILD_DIR := $(TOOLS_BUILD)/zlib-host-build
+
+zlib_host_install: $(ZLIB_HOST_BUILD_DIR)/.installed
+
+#zlib on host machine
+$(ZLIB_HOST_BUILD_DIR)/.installed: download_zlib $(ZLIB_HOST_BUILD_DIR)/.decompressed
+ @$(MAKE) -C $(TOOLS_BUILD)/zlib-$(ZLIB_VERSION)-host
+ @$(MAKE) -C $(TOOLS_BUILD)/zlib-$(ZLIB_VERSION)-host \
+ prefix=$(HOSTTOOLS)/usr/local install
+ @touch $@
+
+download_zlib:
+ $(call EMBTK_GENERIC_MESSAGE,"Downloading $(ZLIB_PACKAGE) if necessary...")
+ @test -e $(DOWNLOAD_DIR)/$(ZLIB_PACKAGE) || \
+ wget -O $(DOWNLOAD_DIR)/$(ZLIB_PACKAGE) $(ZLIB_SITE)/$(ZLIB_PACKAGE)
+
+$(ZLIB_HOST_BUILD_DIR)/.decompressed:
+ $(call EMBTK_GENERIC_MESSAGE,"Decompressing $(ZLIB_PACKAGE)...")
+ @tar -C $(TOOLS_BUILD) -xjf $(DOWNLOAD_DIR)/$(ZLIB_PACKAGE)
+ @mv $(TOOLS_BUILD)/zlib-$(ZLIB_VERSION) \
+ $(TOOLS_BUILD)/zlib-$(ZLIB_VERSION)-host
+ @mkdir -p $(ZLIB_HOST_BUILD_DIR)
+ @touch $@
+