summaryrefslogtreecommitdiff
path: root/devel/libgetopt/buildlink.mk
blob: 6b00ab1699edd8282abd8e18c07825e21a9989d3 (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
43
44
45
46
47
48
49
50
# $NetBSD: buildlink.mk,v 1.13 2001/08/20 03:54:48 jlam Exp $
#
# This Makefile fragment is included by packages that use getopt_long().
#
# To use this Makefile fragment, simply:
#
# (1) Include this Makefile fragment in the package Makefile,
# (2) Optionally define BUILDLINK_INCDIR and BUILDLINK_LIBDIR,
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
#     search path.
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
#     path.

.if !defined(GETOPT_BUILDLINK_MK)
GETOPT_BUILDLINK_MK=	# defined

.include "../../mk/bsd.buildlink.mk"

BUILDLINK_DEPENDS.getopt?=	libgetopt>=1.3

.if exists(/usr/include/getopt.h)
_NEED_GETOPT=		NO
.else
_NEED_GETOPT=		YES
.endif

.if ${_NEED_GETOPT} == "NO"
BUILDLINK_PREFIX.getopt=	/usr
BUILDLINK_FILES.getopt=		include/getopt.h
LIBGETOPT=			# empty
.else
DEPENDS+=	${BUILDLINK_DEPENDS.getopt}:../../devel/libgetopt
EVAL_PREFIX+=			BUILDLINK_PREFIX.getopt=libgetopt
BUILDLINK_PREFIX.getopt_DEFAULT=	${LOCALBASE}
BUILDLINK_FILES.getopt=		include/getopt.h
BUILDLINK_FILES.getopt+=	lib/libgetopt.*
BUILDLINK_FILES.getopt+=	lib/libgetopt_pic.a
LIBGETOPT=			-lgetopt
.endif

CONFIGURE_ENV+=			LIBGETOPT="${LIBGETOPT}"
MAKE_ENV+=			LIBGETOPT="${LIBGETOPT}"

BUILDLINK_TARGETS.getopt=	getopt-buildlink
BUILDLINK_TARGETS+=		${BUILDLINK_TARGETS.getopt}

pre-configure: ${BUILDLINK_TARGETS.getopt}
getopt-buildlink: _BUILDLINK_USE

.endif	# GETOPT_BUILDLINK_MK