Files
dreamlayers.netbsd-mopd/Makefile.inc
David Brownlee 9238af826d Crank up the WARNS level when building on a BSD toolchain
This, for example, would pick up on inadvertent switch fall throughs
2020-10-30 11:01:41 -04:00

17 lines
373 B
Makefile

# $NetBSD: Makefile.inc,v 1.11 2014/05/30 02:16:10 joerg Exp $
.include <bsd.own.mk>
USE_FORT?=yes # network server
WARNS= 5
LIBCOMMON != cd ${.CURDIR}/../common && ${PRINTOBJDIR}
CPPFLAGS+=-I${.CURDIR}/../common
DPADD+= ${LIBCOMMON}/libcommon.a
LDADD+= -L${LIBCOMMON} -lcommon
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif