tn3399_openwrt/tools/cmake/Makefile

36 lines
887 B
Makefile
Raw Normal View History

2011-02-01 04:15:57 +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
PKG_VERSION:=3.14.0
PKG_CPE_ID:=cpe:/a:kitware:cmake
2011-02-01 04:15:57 +08:00
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://cmake.org/files/v3.14/ \
https://github.com/Kitware/CMake/releases/download/v$(PKG_VERSION)/
PKG_HASH:=aa76ba67b3c2af1946701f847073f4652af5cbd9f141f221c97af99127e75502
2011-02-01 04:15:57 +08:00
HOST_BUILD_PARALLEL:=1
HOST_CONFIGURE_PARALLEL:=1
2011-02-01 04:15:57 +08:00
include $(INCLUDE_DIR)/host-build.mk
HOST_CONFIGURE_VARS += \
MAKEFLAGS="$(HOST_JOBS)" \
CXXFLAGS="$(HOST_CFLAGS)"
HOST_CONFIGURE_ARGS := \
$(if $(MAKE_JOBSERVER),--parallel="$(MAKE_JOBSERVER)") \
--prefix=$(STAGING_DIR_HOST)
ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
HOST_MAKE_FLAGS += VERBOSE=1
endif
2011-02-01 04:15:57 +08:00
$(eval $(call HostBuild))