blob: d9c886d074072b61b7e9abaa1cfec6b099de560d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
SYSDIR != cd ${.CURDIR}/../../../..; pwd
CONFDIR != cd ${.CURDIR}/../../conf; pwd
.if ${.CURDIR} == ${.OBJDIR}
.PHONY: config
config:
@echo make obj required first >&2
@false
.else
.PHONY: config clean
config:
config -b ${.OBJDIR} -s ${SYSDIR} ${CONFDIR}/${.CURDIR:T}
.endif
cleandir clean:
.include <bsd.obj.mk>
|