summaryrefslogtreecommitdiffstats
path: root/rules/host-flex.make
blob: 27509223a8bd94205fc7bbdd1506effa4b36f660 (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
41
42
# -*-makefile-*-
#
# Copyright (C) 2010 by Erwin Rol <erwin@erwinrol.com>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_FLEX) += host-flex

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

HOST_FLEX_CONF_TOOL	:= autoconf
HOST_FLEX_CONF_OPT	:= \
	$(HOST_AUTOCON) \
	--disable-nls \
	--disable-rpath \
	--disable-warnings \
	--disable-libfl \
	--enable-bootstrap

# ----------------------------------------------------------------------------
# Compile
# ----------------------------------------------------------------------------

HOST_FLEX_MAKE_OPT	:= \
	SUBDIRS=src

# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------

HOST_FLEX_INSTALL_OPT	:= \
	$(HOST_FLEX_MAKE_OPT) \
	install

# vim: syntax=make