blob: 7a6ee5401ed8f871d17fafbba0f8ab98b8e1279a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: krb5.inc,v 1.1 2009/07/19 23:30:43 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/krb5/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/krb5
KRB5_SRCS = krb5_asn.c
SRCS += ${KRB5_SRCS}
.for cryptosrc in ${KRB5_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/krb5
.endfor
|