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