xref: /minix/minix/servers/mib/Makefile (revision 2a404668)
1# Makefile for the Management Information Base (MIB) server
2
3.include <bsd.own.mk>
4
5.if !empty(DBG:M-Og) || !empty(CFLAGS:M-Og) || \
6	!empty(DBG:M-g) || !empty(CFLAGS:M-g)
7#LSC: -Wno-maybe-uninitialized while compiling with -DNDEBUG -Og
8CWARNFLAGS.gcc+=	-Wno-maybe-uninitialized
9.endif
10
11PROG=	mib
12SRCS=	main.c tree.c remote.c kern.c vm.c hw.c proc.c minix.c
13
14CPPFLAGS+= -I${NETBSDSRCDIR}/minix
15
16DPADD+=	${LIBSYS}
17LDADD+=	-lsys
18
19WARNS?=	5
20
21.include <minix.service.mk>
22