Makefile revision 2
346N/A#
346N/A# CDDL HEADER START
346N/A#
346N/A# The contents of this file are subject to the terms of the
346N/A# Common Development and Distribution License (the "License").
346N/A# You may not use this file except in compliance with the License.
346N/A#
346N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
346N/A# or http://www.opensolaris.org/os/licensing.
346N/A# See the License for the specific language governing permissions
346N/A# and limitations under the License.
346N/A#
346N/A# When distributing Covered Code, include this CDDL HEADER in each
346N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
346N/A# If applicable, add the following below this CDDL HEADER, with the
346N/A# fields enclosed by brackets "[]" replaced with your own identifying
346N/A# information: Portions Copyright [yyyy] [name of copyright owner]
346N/A#
346N/A# CDDL HEADER END
346N/A#
4256N/A#
346N/A# Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
346N/A#
2656N/A
2656N/ASUBDIRS = \
2656N/A bsdmd5 \
2656N/A bsdbf \
2656N/A sunmd5 \
2656N/A sha256 \
2656N/A sha512
2656N/A
2656N/Aall := TARGET= all
2656N/Aclean := TARGET= clean
2656N/Aclobber := TARGET= clobber
346N/Adelete := TARGET= delete
346N/Ainstall := TARGET= install
346N/Alint := TARGET= lint
346N/Acatalog := TARGET= catalog
346N/Apackage := TARGET= package
346N/A_msg := TARGET= _msg
346N/A
2656N/A# Crypt modules are not linked to via the link-editor, and stubs are not needed.
2656N/A# Provide NULL make rules to satisfy the parent makefiles.
2656N/Astub:
2656N/Astubinstall:
2656N/A
2656N/A.KEEP_STATE:
2656N/A
3090N/Aall lint clean clobber catalog package install _msg: $(SUBDIRS)
2656N/A
2656N/Ainstall: all
2656N/A
2656N/A$(SUBDIRS): FRC
2656N/A @cd $@; pwd; $(MAKE) $(TARGET)
2656N/A
2656N/AFRC:
2656N/A