blob: bf509ef8075e9cb9cec962503ccd244de5c91b4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: directive-ifndef.mk,v 1.6 2020/10/24 08:46:08 rillig Exp $
#
# Tests for the .ifndef directive, which can be used for multiple-inclusion
# guards. In contrast to C, where #ifndef and #define nicely line up the
# macro name, there is no such syntax in make. Therefore, it is more
# common to use .if !defined(GUARD) instead.
.ifndef GUARD
GUARD= # defined
. info guarded section
.endif
.ifndef GUARD
GUARD= # defined
. info guarded section
.endif
.if !defined(GUARD)
GUARD= # defined
. info guarded section
.endif
all:
@:;
|