xref: /onnv-gate/usr/src/lib/crypt_modules/sha256/Makefile (revision 6532:09f1081b8fb2)
1*6532Swyllys#
2*6532Swyllys# CDDL HEADER START
3*6532Swyllys#
4*6532Swyllys# The contents of this file are subject to the terms of the
5*6532Swyllys# Common Development and Distribution License (the "License").
6*6532Swyllys# You may not use this file except in compliance with the License.
7*6532Swyllys#
8*6532Swyllys# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*6532Swyllys# or http://www.opensolaris.org/os/licensing.
10*6532Swyllys# See the License for the specific language governing permissions
11*6532Swyllys# and limitations under the License.
12*6532Swyllys#
13*6532Swyllys# When distributing Covered Code, include this CDDL HEADER in each
14*6532Swyllys# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*6532Swyllys# If applicable, add the following below this CDDL HEADER, with the
16*6532Swyllys# fields enclosed by brackets "[]" replaced with your own identifying
17*6532Swyllys# information: Portions Copyright [yyyy] [name of copyright owner]
18*6532Swyllys#
19*6532Swyllys# CDDL HEADER END
20*6532Swyllys#
21*6532Swyllys# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
22*6532Swyllys# Use is subject to license terms.
23*6532Swyllys#
24*6532Swyllys# ident	"%Z%%M%	%I%	%E% SMI"
25*6532Swyllys#
26*6532Swyllys
27*6532Swyllysinclude $(SRC)/lib/Makefile.lib
28*6532Swyllys
29*6532SwyllysSUBDIRS=	$(MACH)
30*6532Swyllys$(BUILD64)SUBDIRS += $(MACH64)
31*6532Swyllys
32*6532Swyllysall :=		TARGET= all
33*6532Swyllysclean :=	TARGET= clean
34*6532Swyllysclobber :=	TARGET= clobber
35*6532Swyllysdelete :=	TARGET= delete
36*6532Swyllysinstall :=	TARGET= install
37*6532Swyllyslint :=		TARGET= lint
38*6532Swyllystest :=		TARGET= test
39*6532Swyllys
40*6532Swyllys.KEEP_STATE:
41*6532Swyllys
42*6532Swyllysall clean clobber delete install lint test: $(SUBDIRS)
43*6532Swyllys
44*6532Swyllys_msg:
45*6532Swyllys
46*6532Swyllyscatalog:
47*6532Swyllys
48*6532Swyllys$(SUBDIRS):	FRC
49*6532Swyllys	@cd $@; pwd; $(MAKE) $(TARGET)
50*6532Swyllys
51*6532SwyllysFRC:
52