Makefile revision 2
2976N/A#
2976N/A# CDDL HEADER START
2976N/A#
2976N/A# The contents of this file are subject to the terms of the
2976N/A# Common Development and Distribution License (the "License").
2976N/A# You may not use this file except in compliance with the License.
2976N/A#
2976N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2976N/A# or http://www.opensolaris.org/os/licensing.
2976N/A# See the License for the specific language governing permissions
2976N/A# and limitations under the License.
2976N/A#
2976N/A# When distributing Covered Code, include this CDDL HEADER in each
2976N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2976N/A# If applicable, add the following below this CDDL HEADER, with the
2976N/A# fields enclosed by brackets "[]" replaced with your own identifying
2976N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2976N/A#
2976N/A# CDDL HEADER END
2976N/A#
2976N/A
2976N/A#
2976N/A# Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
2976N/A#
2976N/A
2976N/Ainclude $(SRC)/lib/Makefile.lib
2976N/A
2976N/ACAPDIR = capabilities
2976N/A
2976N/ASUBDIRS = $(MACH) $(BUILD64) $(MACH64)
2976N/A
2976N/AHDRS = md4.h md5.h sha1.h sha2.h
2976N/AHDRDIR = common
2976N/A
2976N/Aall := TARGET= all
2976N/Aclean := TARGET= clean
2976N/Aclobber := TARGET= clobber
2976N/Ainstall := TARGET= install
2976N/Astub := TARGET= stub
2976N/Astubinstall := TARGET= stubinstall
2976N/Alint := TARGET= lint
2976N/A
2976N/A.KEEP_STATE:
2976N/A
2976N/A.PARALLEL: $(SUBDIRS)
2976N/A
2976N/Aall clean clobber install lint: \
2976N/A $(CAPDIR) .WAIT $(SUBDIRS)
2976N/A
2976N/Astub stubinstall: \
2976N/A $(SUBDIRS)
2976N/A
2976N/Ainstall_h: $(ROOTHDRS)
2976N/A
2976N/Acheck: $(CHECKHDRS)
2976N/A
2976N/A$(CAPDIR) \
2976N/A$(SUBDIRS): FRC
2976N/A @cd $@; pwd; $(MAKE) $(TARGET)
2976N/A
2976N/AFRC:
2976N/A
2976N/Ainclude $(SRC)/lib/Makefile.targ
2976N/A