blob: 6c8ee324df3bcd6f1c5eeca660aee6c732b27e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.2 2011/04/15 20:56:51 elric Exp $
NOLINT= # defined
.include <bsd.own.mk>
.include <${.CURDIR}/../../Makefile.inc>
.PATH: ${HEIMDIST}/lib/ipc
LIB= ipc
LIBDPLIBS+= util ${NETBSDSRCDIR}/lib/libutil \
crypt ${NETBSDSRCDIR}/lib/libcrypt
SRCS= common.c client.c server.c
HOST_CPPFLAGS+= -I${HEIMBASE}/include -DHAVE_CONFIG_H
libinstall::
.include <${HEIMBASE}/Makefile.rules.inc>
.include <bsd.lib.mk>
|