blob: 47e8bd3488ebfc3dd6a950a992590b24e4816f00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: comp.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/comp/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/comp
COMP_SRCS = comp_lib.c comp_err.c \
c_rle.c c_zlib.c
SRCS += ${COMP_SRCS}
.for cryptosrc in ${COMP_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/comp
.endfor
|