blob: 33174d125f54691809fb6413ef67aa0630116bc2 (
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
|
# $NetBSD: buildlink.mk,v 1.3 2001/06/23 19:26:54 jlam Exp $
#
# This Makefile fragment is included by packages that use pth.
#
# To use this Makefile fragment, simply:
#
# (1) Optionally define BUILDLINK_DEPENDS.pth to the dependency pattern
# for the version of pth desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
# search path, and
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
# path.
.if !defined(PTH_BUILDLINK_MK)
PTH_BUILDLINK_MK= # defined
BUILDLINK_DEPENDS.pth?= pth>=1.3.2
DEPENDS+= ${BUILDLINK_DEPENDS.pth}:../../devel/pth
BUILDLINK_PREFIX.pth= ${LOCALBASE}
BUILDLINK_FILES.pth= include/pth.h
BUILDLINK_FILES.pth+= include/pthread.h
BUILDLINK_FILES.pth+= lib/libpth.*
BUILDLINK_FILES.pth+= lib/libpthread.*
BUILDLINK_TARGETS.pth= pth-buildlink
BUILDLINK_TARGETS.pth+= pth-buildlink-config-wrapper
BUILDLINK_TARGETS.pth+= pth-pthread-buildlink-config-wrapper
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.pth}
BUILDLINK_CONFIG.pth= ${LOCALBASE}/bin/pth-config
BUILDLINK_CONFIG_WRAPPER.pth= ${BUILDLINK_DIR}/bin/pth-config
BUILDLINK_CONFIG.pth-pthread= ${LOCALBASE}/bin/pthread-config
BUILDLINK_CONFIG_WRAPPER.pth-pthread= ${BUILDLINK_DIR}/bin/pthread-config
pre-configure: ${BUILDLINK_TARGETS.pth}
pth-buildlink: _BUILDLINK_USE
pth-buildlink-config-wrapper: _BUILDLINK_CONFIG_WRAPPER_USE
pth-pthread-buildlink-config-wrapper: _BUILDLINK_CONFIG_WRAPPER_USE
.include "../../mk/bsd.buildlink.mk"
.endif # PTH_BUILDLINK_MK
|