Makefile.inc revision 1.3
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.else
10.PHONY: config clean
11config:
12	config -b ${.OBJDIR} -s ${SYSDIR} ${CONFDIR}/${.CURDIR:T}
13.endif
14
15cleandir clean:
16
17.include <bsd.obj.mk>
18
19