Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
227N/A#
227N/A# CDDL HEADER START
227N/A#
227N/A# The contents of this file are subject to the terms of the
227N/A# Common Development and Distribution License, Version 1.0 only
227N/A# (the "License"). You may not use this file except in compliance
227N/A# with the License.
227N/A#
227N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
227N/A# or http://www.opensolaris.org/os/licensing.
227N/A# See the License for the specific language governing permissions
227N/A# and limitations under the License.
227N/A#
227N/A# When distributing Covered Code, include this CDDL HEADER in each
227N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
227N/A# If applicable, add the following below this CDDL HEADER, with the
227N/A# fields enclosed by brackets "[]" replaced with your own identifying
227N/A# information: Portions Copyright [yyyy] [name of copyright owner]
227N/A#
227N/A# CDDL HEADER END
1938N/A#
227N/A#
227N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
227N/A# Use is subject to license terms.
227N/A#
227N/A#ident "%Z%%M% %I% %E% SMI"
227N/A#
618N/A# This makefile drives the production of the ARCFOUR KEF provider.
227N/A#
227N/A# intel implementation architecture dependent
844N/A#
844N/A
227N/A#
1258N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
227N/A#
227N/AUTSBASE = ../..
227N/ACOM_DIR = $(SRC)/common/crypto/arcfour
227N/A
227N/A#
227N/A# Define the module and object file sets.
227N/A#
227N/AMODULE = arcfour2048
227N/AOBJECTS = $(ARCFOURPROV_OBJS:%=$(OBJS_DIR)/%)
1938N/ALINTS = $(ARCFOURPROV_OBJS:%.o=$(LINTS_DIR)/%.ln)
1938N/AROOTMODULE = $(ROOT_CRYPTO_DIR)/$(MODULE)
227N/A
227N/A#
227N/A# Include common rules.
227N/A#
227N/Ainclude $(UTSBASE)/intel/Makefile.intel
227N/A
227N/A# set signing mode
227N/AELFSIGN_MOD = $(ELFSIGN_CRYPTO)
227N/A
227N/A#
# Define targets
#
ALL_TARGET = $(BINARY)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
#
# Overrides
#
CPPFLAGS += -I$(COM_DIR) -DCRYPTO_UNLIMITED
#
# Default build targets.
#
.KEEP_STATE:
def: $(DEF_DEPS)
all: $(ALL_DEPS)
clean: $(CLEAN_DEPS)
clobber: $(CLOBBER_DEPS)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/intel/Makefile.targ