Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
409N/A#
267N/A# CDDL HEADER START
267N/A#
267N/A# The contents of this file are subject to the terms of the
267N/A# Common Development and Distribution License, Version 1.0 only
267N/A# (the "License"). You may not use this file except in compliance
267N/A# with the License.
267N/A#
267N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
267N/A# or http://www.opensolaris.org/os/licensing.
267N/A# See the License for the specific language governing permissions
267N/A# and limitations under the License.
267N/A#
267N/A# When distributing Covered Code, include this CDDL HEADER in each
267N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
267N/A# If applicable, add the following below this CDDL HEADER, with the
267N/A# fields enclosed by brackets "[]" replaced with your own identifying
267N/A# information: Portions Copyright [yyyy] [name of copyright owner]
267N/A#
267N/A# CDDL HEADER END
267N/A#
267N/A#
926N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
926N/A# Use is subject to license terms.
267N/A#
926N/A# ident "%Z%%M% %I% %E% SMI"
267N/A#
269N/A# This makefile drives the production of the cryptoadm driver
269N/A# kernel module.
269N/A#
269N/A# intel architecture dependent
267N/A#
267N/A
419N/A#
419N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
419N/A#
267N/AUTSBASE = ../..
419N/A
502N/A#
502N/A# Define the module and object file sets.
419N/A#
419N/AMODULE = cryptoadm
419N/AOBJECTS = $(CRYPTOADM_OBJS:%=$(OBJS_DIR)/%)
419N/ALINTS = $(CRYPTOADM_OBJS:%.o=$(LINTS_DIR)/%.ln)
419N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
419N/ACONF_SRCDIR = $(UTSBASE)/common/crypto/io
419N/A
419N/A#
419N/A# Include common rules.
419N/A#
419N/Ainclude $(UTSBASE)/intel/Makefile.intel
419N/A
419N/A#
419N/A# Define targets
419N/A#
419N/AALL_TARGET = $(BINARY) $(SRC_CONFFILE)
419N/ALINT_TARGET = $(MODULE).lint
419N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK) $(ROOT_CONFFILE)
419N/A
419N/ALDFLAGS += -dy -Nmisc/kcf
419N/A
419N/A#
419N/A# Default build targets.
419N/A#
419N/A.KEEP_STATE:
419N/A
988N/Adef: $(DEF_DEPS)
419N/A
419N/Aall: $(ALL_DEPS)
419N/A
419N/Aclean: $(CLEAN_DEPS)
419N/A
419N/Aclobber: $(CLOBBER_DEPS)
419N/A
419N/Alint: $(LINT_DEPS)
419N/A
419N/Amodlintlib: $(MODLINTLIB_DEPS)
419N/A
419N/Aclean.lint: $(CLEAN_LINT_DEPS)
419N/A
419N/Ainstall: $(INSTALL_DEPS)
419N/A
419N/A#
419N/A# Include common targets.
419N/A#
419N/Ainclude $(UTSBASE)/intel/Makefile.targ
419N/A