mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
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
281 B
Makefile
19 lines
281 B
Makefile
#$FreeBSD$
|
|
|
|
LIB= heimipcs
|
|
PRIVATELIB=
|
|
LDADD= -lheimbase -lroken
|
|
LDFLAGS= -pthread
|
|
DPADD= ${LIBHEIMBASE} ${LIBROKEN}
|
|
|
|
SRCS= \
|
|
server.c \
|
|
common.c
|
|
|
|
CFLAGS+= -I${KRB5DIR}/lib/roken \
|
|
-I${KRB5DIR}/base \
|
|
-I${KRB5DIR}/lib/ipc -I.
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.PATH: ${KRB5DIR}/lib/ipc
|