mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
16 lines
290 B
Text
16 lines
290 B
Text
# $Id: misc,v 1.1.1.1 2011/03/06 00:04:58 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
|