Makefile revision 67e3a03ed4a2813074d36330f062ed6e593a4937
4049N/A#
3998N/A# CDDL HEADER START
5403N/A#
3998N/A# The contents of this file are subject to the terms of the
3998N/A# Common Development and Distribution License (the "License").
3998N/A# You may not use this file except in compliance with the License.
3998N/A#
3998N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3998N/A# or http://www.opensolaris.org/os/licensing.
3998N/A# See the License for the specific language governing permissions
3998N/A# and limitations under the License.
3998N/A#
3998N/A# When distributing Covered Code, include this CDDL HEADER in each
3998N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3998N/A# If applicable, add the following below this CDDL HEADER, with the
3998N/A# fields enclosed by brackets "[]" replaced with your own identifying
3998N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3998N/A#
3998N/A# CDDL HEADER END
3998N/A#
3998N/A#
3998N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
3998N/A# Use is subject to license terms.
3998N/A#
3998N/A# ident "%Z%%M% %I% %E% SMI"
3998N/A#
4285N/A
4285N/APROG = cryptoadm
4285N/A
3998N/AOBJS = cryptoadm.o \
3998N/A adm_uef.o \
3998N/A adm_kef.o \
6847N/A adm_kef_ioctl.o \
6847N/A adm_kef_util.o \
6847N/A adm_util.o \
6847N/A start_stop.o \
6847N/A adm_metaslot.o
6847N/A
6847N/ASRCS = $(OBJS:.o=.c)
6847N/A
6847N/Ainclude ../../Makefile.cmd
6847N/A
6847N/APOFILES = $(OBJS:%.o=%.po)
6847N/APOFILE = $(PROG)_all.po
6847N/A
6847N/ACFLAGS += $(CCVERBOSE)
6847N/A
6847N/ALDLIBS += -lcryptoutil
6847N/A
6847N/A.KEEP_STATE:
6847N/A
6847N/Aall: $(PROG)
6847N/A
6847N/A$(PROG): $(OBJS)
6847N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(DYNFLAGS)
6847N/A $(POST_PROCESS)
6847N/A
6847N/A$(POFILE): $(POFILES)
6847N/A $(RM) $@; cat $(POFILES) > $@
6847N/A
6847N/Ainstall: all $(ROOTUSRSBINPROG)
6847N/A
6847N/Aclean:
6847N/A $(RM) -f $(OBJS) $(PROG)
6847N/A
6847N/Alint: lint_SRCS
6847N/A
6847N/Ainclude ../../Makefile.targ
6847N/A