mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-28 22:36:24 +01:00
17 lines
293 B
Makefile
17 lines
293 B
Makefile
# $Id: misc.mk,v 1.1.1.1 2014/08/30 18:57:18 sjg Exp $
|
|
|
|
.if !exists(${.CURDIR}/)
|
|
.warning ${.CURDIR}/ doesn't exist ?
|
|
.endif
|
|
|
|
.if !exists(${.CURDIR}/.)
|
|
.warning ${.CURDIR}/. doesn't exist ?
|
|
.endif
|
|
|
|
.if !exists(${.CURDIR}/..)
|
|
.warning ${.CURDIR}/.. doesn't exist ?
|
|
.endif
|
|
|
|
all:
|
|
@: all is well
|