Makefile revision 24fe0b3bf671e123467ce1df0b67cadd3614c8e4
1924N/A#
1924N/A# CDDL HEADER START
1924N/A#
1924N/A# The contents of this file are subject to the terms of the
1924N/A# Common Development and Distribution License (the "License").
1924N/A# You may not use this file except in compliance with the License.
1924N/A#
1924N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1924N/A# or http://www.opensolaris.org/os/licensing.
1924N/A# See the License for the specific language governing permissions
1924N/A# and limitations under the License.
1924N/A#
1924N/A# When distributing Covered Code, include this CDDL HEADER in each
1924N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1924N/A# If applicable, add the following below this CDDL HEADER, with the
1924N/A# fields enclosed by brackets "[]" replaced with your own identifying
1924N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1924N/A#
1924N/A# CDDL HEADER END
1924N/A#
1924N/A#
1924N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
1924N/A# Use is subject to license terms.
1924N/A#
4134N/A
1924N/APROG= w
1924N/A
1924N/AOBJS= w.o
1924N/A
1924N/ASRCS= $(OBJS:%.o=../%.c)
4134N/A
1924N/Ainclude ../../Makefile.cmd
4134N/Ainclude ../../Makefile.cmd.64
4134N/A
4134N/ACFLAGS64 += $(CCVERBOSE)
4134N/A
4134N/AROOTLINK= $(ROOTBIN64)/uptime
4134N/A
4134N/AFILEMODE= 4555
1924N/A
1924N/A.KEEP_STATE:
1924N/A
1924N/A%.o: ../%.c
1924N/A $(COMPILE.c) $<
1924N/A
1924N/Aall: $(PROG)
1924N/A
1924N/A$(PROG): $(OBJS)
1924N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
4134N/A $(POST_PROCESS)
4134N/A
4134N/Ainstall: all $(ROOTLINK)
4134N/A
1924N/A$(ROOTLINK): $(ROOTPROG64)
4134N/A $(RM) $@
4134N/A $(LN) $(ROOTPROG64) $@
4134N/A
1924N/Aclean:
1924N/A $(RM) $(OBJS)
1924N/A
1924N/Alint:
1924N/A $(LINT.c) $(SRCS) $(LDLIBS)
1924N/A
1924N/Ainclude ../../Makefile.targ
1924N/A