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