summaryrefslogtreecommitdiffstats
path: root/rules/host-system-isl.make
blob: 03f9028fff6142d55f00a0174a87e8995c2def18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*-makefile-*-
#
# Copyright (C) 2020 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_SYSTEM_ISL) += host-system-isl
HOST_SYSTEM_ISL_LICENSE	:= ignore

$(STATEDIR)/host-system-isl.prepare:
	@$(call targetinfo)
	@echo "Checking for isl ..."
	@echo "#include <isl/version.h>" | $(HOSTCC) -x c -c -o /dev/null - 2>/dev/null || \
		ptxd_bailout "isl development files not found!" \
		"Please install libisl-dev (debian) or isl-devel (fedora)"
	@$(call touch)

# vim: syntax=make