Makefile revision 25cf1a301a396c38e8adf52c15f537b80d2483f7
253N/A#
253N/A# CDDL HEADER START
253N/A#
253N/A# The contents of this file are subject to the terms of the
253N/A# Common Development and Distribution License (the "License").
253N/A# You may not use this file except in compliance with the License.
253N/A#
253N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
253N/A# or http://www.opensolaris.org/os/licensing.
253N/A# See the License for the specific language governing permissions
253N/A# and limitations under the License.
253N/A#
253N/A# When distributing Covered Code, include this CDDL HEADER in each
253N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
253N/A# If applicable, add the following below this CDDL HEADER, with the
253N/A# fields enclosed by brackets "[]" replaced with your own identifying
253N/A# information: Portions Copyright [yyyy] [name of copyright owner]
253N/A#
253N/A# CDDL HEADER END
253N/A#
5680N/A#
5680N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5361N/A# Use is subject to license terms.
253N/A#
5680N/A# ident "%Z%%M% %I% %E% SMI"
253N/A#
253N/A# Makefile definitions for Sun Fire 15000 Key Management Daemon (sckmd)
5680N/A#
253N/A
253N/APROG= sckmd
253N/A
844N/APLATFORM= sun4u
844N/A
1258N/ACLASS= 32
253N/A
253N/ASRCS= $(PROG:%=%.c)
844N/A
844N/AOBJS= $(SRCS:%.c=%.o)
253N/A
253N/ALINT_SRCS= $(SRCS)
3514N/ALINT_FILES= $(LINT_SRCS:%.c=%.ln)
2899N/A
5680N/A
5680N/Ainclude ../../../Makefile.cmd
253N/Ainclude ../../../../Makefile.psm
253N/A
253N/A
253N/AOWNER= root
253N/AGROUP= sys
253N/A
253N/AUSRPSMPROG= $(USR_PSM_LIB_DIR)/$(PROG)
253N/A$(USRPSMPROG) := FILEMODE = 0755
5680N/A
253N/A
253N/A#
5680N/A# FLAGS:
253N/A#
253N/ACPPFLAGS= -I$(USR_PSM_INCL_DIR) -I$(SRC)/uts/sun4u/starcat $(CPPFLAGS.master)
253N/A
253N/ALINT_FLAGS= -c -Nlevel=4 -Ncheck
253N/A
253N/A
253N/A#
4044N/A# LIBRARIES:
4044N/A#
4044N/ALDLIBS += -lsocket -lipsecutil
3823N/A
3823N/A#
3823N/A# Build rules
4044N/A#
4044N/A.KEEP_STATE:
4044N/A
4044N/A
4044N/Aall: $(PROG)
4044N/A
4044N/A$(PROG): $(OBJS)
4044N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
4044N/A $(POST_PROCESS)
4044N/A
4044N/Ainstall: all .WAIT $(USRPSMPROG)
4044N/A
4044N/Alint:
3823N/A $(LINT) $(LINT_FLAGS) $(CPPFLAGS) $(LINT_SRCS)
3823N/A
3823N/Aclean:
3823N/A $(RM) $(PROG) $(OBJS) *.po $(LINT_FILES) core
3823N/A
3823N/A
3823N/Ainclude ../../../Makefile.targ
3823N/Ainclude ../../../../Makefile.psm.targ
253N/A