blob: 31c0c19882c4a99cf708cc9d226e7d3c67b52d5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#$OpenBSD: Makefile,v 1.2 2013/07/02 19:00:09 ajacoutot Exp $
.include <bsd.own.mk>
LIB= heimipcc
SRCS= \
client.c \
common.c
.if !defined(NOPIC)
CFLAGS+= -DPIC ${PICFLAG}
.endif
CPPFLAGS= -I${KRB5DIR}/lib/roken \
-I${KRB5DIR}/base \
-I${KRB5DIR}/lib/ipc
# skip installation
install:
.include <bsd.lib.mk>
.PATH: ${KRB5DIR}/lib/ipc
|