blob: 7a647a5ae4adb654604cf7fd27748ab292ce1dfc (
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
51
52
53
54
55
56
|
# $NetBSD: bsd.build.mk,v 1.11 2008/02/07 21:36:13 rillig Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and provides all
# variables and targets related to building sources for a package.
#
# The following are the "public" targets provided by this module:
#
# build, test
#
# The following targets may be overridden in a package Makefile:
#
# pre-build, do-build, post-build
# pre-test, do-test, post-test
#
# Package-settable variables:
#
# NO_BUILD
# When defined, the whole build phase is skipped. That includes
# any substitutions that have one of {pre,do,post}-build as their
# SUBST_STAGE.
#
_COOKIE.build= ${WRKDIR}/.build_done
_COOKIE.test= ${WRKDIR}/.test_done
######################################################################
### build (PUBLIC)
######################################################################
### build is a public target to build the sources for the package.
###
.PHONY: build
.if !defined(NO_BUILD)
. include "build.mk"
.elif !target(build)
. if exists(${_COOKIE.build})
build:
@${DO_NADA}
. elif defined(_PKGSRC_BARRIER)
build: configure build-cookie pkginstall
. else
build: barrier
. endif
.endif
.include "test.mk"
######################################################################
### build-cookie (PRIVATE)
######################################################################
### build-cookie creates the "build" cookie file.
###
.PHONY: build-cookie
build-cookie:
${RUN}${TEST} ! -f ${_COOKIE.build} || ${FALSE}
${RUN}${MKDIR} ${_COOKIE.build:H}
${RUN}${ECHO} ${PKGNAME} > ${_COOKIE.build}
|