2011-02-01 04:15:57 +08:00
|
|
|
#
|
2016-01-11 01:19:40 +08:00
|
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
2011-02-01 04:15:57 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=cmake
|
2017-01-05 20:22:42 +08:00
|
|
|
PKG_VERSION:=3.7.1
|
2011-02-01 04:15:57 +08:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2016-11-25 22:10:09 +08:00
|
|
|
PKG_SOURCE_URL:=https://cmake.org/files/v3.7/ \
|
2015-10-31 17:31:06 +08:00
|
|
|
https://fossies.org/linux/misc/
|
2017-01-05 20:22:42 +08:00
|
|
|
PKG_HASH:=449a5bce64dbd4d5b9517ebd1a1248ed197add6ad27934478976fd5f1f9330e1
|
2011-02-01 04:15:57 +08:00
|
|
|
|
2012-09-15 22:18:10 +08:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
2012-09-23 17:50:01 +08:00
|
|
|
HOST_CONFIGURE_PARALLEL:=1
|
2012-09-15 22:18:10 +08:00
|
|
|
|
2011-02-01 04:15:57 +08:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2017-01-12 21:41:01 +08:00
|
|
|
HOST_CONFIGURE_VARS += \
|
2017-01-12 21:31:13 +08:00
|
|
|
MAKEFLAGS="$(HOST_JOBS)" \
|
2017-01-12 21:41:01 +08:00
|
|
|
CXXFLAGS="$(HOST_CFLAGS)"
|
2012-09-28 08:07:28 +08:00
|
|
|
|
|
|
|
HOST_CONFIGURE_ARGS := \
|
2017-01-12 21:31:13 +08:00
|
|
|
$(if $(MAKE_JOBSERVER),--parallel="$(MAKE_JOBSERVER)") \
|
2016-06-16 00:54:02 +08:00
|
|
|
--prefix=$(STAGING_DIR_HOST)
|
2012-09-15 22:18:10 +08:00
|
|
|
|
2017-01-12 21:32:02 +08:00
|
|
|
ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
|
|
|
|
HOST_MAKE_FLAGS += VERBOSE=1
|
|
|
|
endif
|
|
|
|
|
2011-02-01 04:15:57 +08:00
|
|
|
$(eval $(call HostBuild))
|