Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
286N/A#
286N/A# CDDL HEADER START
286N/A#
286N/A# The contents of this file are subject to the terms of the
286N/A# Common Development and Distribution License (the "License").
286N/A# You may not use this file except in compliance with the License.
286N/A#
286N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
286N/A# or http://www.opensolaris.org/os/licensing.
286N/A# See the License for the specific language governing permissions
286N/A# and limitations under the License.
286N/A#
286N/A# When distributing Covered Code, include this CDDL HEADER in each
286N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
286N/A# If applicable, add the following below this CDDL HEADER, with the
286N/A# fields enclosed by brackets "[]" replaced with your own identifying
286N/A# information: Portions Copyright [yyyy] [name of copyright owner]
286N/A#
286N/A# CDDL HEADER END
286N/A#
286N/A#
286N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
286N/A# Use is subject to license terms.
286N/A#
286N/A
286N/ALIBRARY = libssl.a
286N/A
286N/ALOCOBJS = stubs.o
286N/A
286N/ACOMPOBJS = c_zlib.o
286N/A
286N/ACMNOBJS = s3_both.o s3_clnt.o s3_enc.o s3_lib.o \
286N/A s3_pkt.o \
286N/A \
286N/A ssl_algs.o ssl_cert.o ssl_ciph.o ssl_err.o \
286N/A ssl_err2.o ssl_lib.o ssl_rsa.o ssl_sess.o \
286N/A \
286N/A $($(MACH)_OBJECTS)
286N/A
286N/AOBJECTS = $(LOCOBJS) $(COMPOBJS) $(CMNOBJS)
286N/A
286N/Ainclude ../Makefile.com
286N/A
286N/ACMNDIR = $(TOPDIR)/common/openssl/ssl
286N/ACOMPDIR = $(TOPDIR)/common/openssl/crypto/comp
286N/A
286N/ASRCS = $(LOCOBJS:%.o=$(SRCDIR)/%.c) \
286N/A $(COMPOBJS:%.o=$(COMPDIR)/%.c) \
286N/A $(CMNOBJS:%.o=$(CMNDIR)/%.c)
286N/A
286N/ACPPFLAGS += $(OPENSSL_BUILD_CPPFLAGS) $(SOCKCPPFLAGS)
286N/A$(LINTLIB) := SRCS = $(CMNDIR)/$(LINTSRC)
286N/A
286N/ACERRWARN += -_gcc=-Wno-unused-value
286N/A
286N/Aobjs/%.o: $(TOPDIR)/common/openssl/crypto/comp/%.c
286N/A $(COMPILE.c) -o $@ $<
286N/A $(POST_PROCESS_O)
286N/A
286N/Ainclude ../Makefile.targ
286N/A