17 lines
290 B
Plaintext
17 lines
290 B
Plaintext
|
# $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
|