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