Makefile revision f875b4ebb1dd9fdbeb043557cab38ab3bf7f6e01
3112N/A#
3112N/A# CDDL HEADER START
3112N/A#
3112N/A# The contents of this file are subject to the terms of the
3112N/A# Common Development and Distribution License (the "License").
3112N/A# You may not use this file except in compliance with the License.
3112N/A#
3112N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3112N/A# or http://www.opensolaris.org/os/licensing.
3112N/A# See the License for the specific language governing permissions
3112N/A# and limitations under the License.
3112N/A#
3112N/A# When distributing Covered Code, include this CDDL HEADER in each
3112N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3112N/A# If applicable, add the following below this CDDL HEADER, with the
3112N/A# fields enclosed by brackets "[]" replaced with your own identifying
3112N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3112N/A#
3112N/A# CDDL HEADER END
3112N/A#
3112N/A#
3112N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
3112N/A# Use is subject to license terms.
5061N/A#
6240N/A
3112N/A#
4458N/A# ident "%Z%%M% %I% %E% SMI"
4458N/A#
4458N/A
4458N/A#
4495N/A# cmd/tsol/updatehome
4714N/A#
4716N/APROG= updatehome
6240N/A
4458N/Ainclude ../../Makefile.cmd
4458N/A
6304N/AOBJS= setupfiles.o updatehome.o
6304N/ASRCS= $(OBJS:%.o=%.c)
6304N/A
5061N/ALDLIBS += -ltsol -lsecdb
4458N/A
4458N/A.KEEP_STATE:
4458N/A
4458N/Aall: $(PROG)
4458N/A
4458N/A$(PROG): $(OBJS)
4458N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
4458N/A $(POST_PROCESS)
4714N/A
4458N/Ainstall: all $(ROOTPROG)
4458N/A
4458N/Aclean:
5061N/A $(RM) $(OBJS)
5061N/A
4458N/Alint: lint_SRCS
4458N/A
4458N/Ainclude ../Makefile.targ
4458N/A