Makefile revision aecfc01d1bad84e66649703f7fc2926ef70b34ba
1282N/A#
1282N/A# CDDL HEADER START
1282N/A#
1282N/A# The contents of this file are subject to the terms of the
1282N/A# Common Development and Distribution License (the "License").
1282N/A# You may not use this file except in compliance with the License.
1282N/A#
1282N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1282N/A# or http://www.opensolaris.org/os/licensing.
1282N/A# See the License for the specific language governing permissions
1282N/A# and limitations under the License.
1282N/A#
1282N/A# When distributing Covered Code, include this CDDL HEADER in each
1282N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1282N/A# If applicable, add the following below this CDDL HEADER, with the
1282N/A# fields enclosed by brackets "[]" replaced with your own identifying
1282N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1282N/A#
1282N/A# CDDL HEADER END
1282N/A#
1282N/A#
1282N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
1282N/A# Use is subject to license terms.
1282N/A#
1282N/A
1282N/APROG= vtdaemon vtinfo vtxlock
1282N/A
1282N/AVTDAEMON_SRC= vtdaemon.c
1282N/AVTINFO_SRC= vtinfo.c
1282N/A
1282N/Ainclude ../Makefile.cmd
1282N/A
1282N/ACFLAGS += $(CCVERBOSE)
1282N/A
1282N/ALDLIBS += -ldoor -lpam -lbsm
1282N/A
1282N/A.KEEP_STATE:
1282N/A
1282N/Aall: $(PROG)
1282N/A
1282N/Avtdaemon: $(VTDAEMON_SRC)
1282N/A $(LINK.c) -o $@ $(VTDAEMON_SRC) $(LDLIBS)
1282N/A $(POST_PROCESS)
1282N/A
1282N/Avtinfo: $(VTINFO_SRC)
1282N/A $(LINK.c) -o $@ $(VTINFO_SRC)
1282N/A $(POST_PROCESS)
1282N/A
1282N/Ainstall: all $(ROOTLIBPROG)
1282N/A
1282N/Aclean:
1282N/A
1282N/Alint:
1282N/A $(LINT.c) $(VTDAEMON_SRC) $(LDLIBS)
1282N/A $(LINT.c) $(VTINFO_SRC)
1282N/A
1282N/Ainclude ../Makefile.targ
1282N/A