summaryrefslogtreecommitdiffstats
path: root/rules/host-libtasn1.make
blob: a3357301c01677e4e0db07bcfd2e62f296ef4c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*-makefile-*-
#
# Copyright (C) 2018 by Juergen Borleis <jbe@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_LIBTASN1) += host-libtasn1

#
# Paths and names
#
HOST_LIBTASN1_DIR	= $(HOST_BUILDDIR)/$(LIBTASN1)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
HOST_LIBTASN1_CONF_TOOL	:= autoconf
HOST_LIBTASN1_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--disable-doc \
	--disable-gtk-doc \
	--disable-gtk-doc-html \
	--disable-gtk-doc-pdf \
	--disable-valgrind-tests \
	--disable-code-coverage \
	--disable-gcc-warnings

# Needed for old compilers that default to c90
HOST_LIBTASN1_CFLAGS := -std=c99

# vim: syntax=make