blob: b08872a521ce11fc0d62a67b3fc2637de3a23135 (
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
|
# $NetBSD: automake.mk,v 1.10 2005/05/22 19:11:12 jlam Exp $
#
# makefile fragment for packages that use automake
# AUTOMAKE_REQD can be set to the minimum version required.
# It adds a build dependency on the appropriate automake and autoconf
# packages and sets the following variables:
# AUTOMAKE: automake binary to use
# ACLOCAL: aclocal binary to use
# autoconf required version will default to 2.13 if automake 1.4* is used,
# and to 2.58 otherwise.
#
.if !defined(AUTOMAKE_MK)
AUTOMAKE_MK= # defined
# minimal required version
AUTOMAKE_REQD?= 1.9
.include "../../mk/bsd.prefs.mk"
.if !empty(AUTOMAKE_REQD:M1.4*)
USE_TOOLS+= automake14
.else
USE_TOOLS+= automake
.endif
.endif # AUTOMAKE_MK
|