blob: 8553ef5b401aed6a947cc43c77c8de33e30c4293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: comp.inc,v 1.1.1.2 2023/04/18 14:19:03 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_zlib.c
SRCS += ${COMP_SRCS}
.for cryptosrc in ${COMP_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/comp
.endfor
|