mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-27 11:20:58 +01:00
0d410def34
private shared libraries, instead of hacked-together archives of PIC objects. This makes it possible to build a static libkrb5 that works. Reviewed by: stas Approved by: re (gjb)
19 lines
283 B
Makefile
19 lines
283 B
Makefile
#$FreeBSD$
|
|
|
|
LIB= heimipcc
|
|
PRIVATELIB=
|
|
LDADD= -lheimbase -lroken -lpthread
|
|
DPADD= ${LIBHEIMBASE} ${LIBROKEN} ${LIBPTHREAD}
|
|
|
|
SRCS= \
|
|
client.c \
|
|
common.c
|
|
|
|
CFLAGS+= -I${KRB5DIR}/lib/roken \
|
|
-I${KRB5DIR}/base \
|
|
-I${KRB5DIR}/lib/ipc
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.PATH: ${KRB5DIR}/lib/ipc
|