Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# CDDL HEADER START
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# The contents of this file are subject to the terms of the
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# Common Development and Distribution License, Version 1.0 only
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# (the "License"). You may not use this file except in compliance
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# with the License.
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# or http://www.opensolaris.org/os/licensing.
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# See the License for the specific language governing permissions
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# and limitations under the License.
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# When distributing Covered Code, include this CDDL HEADER in each
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# If applicable, add the following below this CDDL HEADER, with the
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# fields enclosed by brackets "[]" replaced with your own identifying
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# information: Portions Copyright [yyyy] [name of copyright owner]
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# CDDL HEADER END
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# Use is subject to license terms.
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor# ident "%Z%%M% %I% %E% SMI"
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor#
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorPROG= whodo
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorOBJS= whodo.o
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorSRCS= $(OBJS:%.o=../%.c)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorinclude ../../Makefile.cmd
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorinclude ../../Makefile.cmd.64
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorCFLAGS64 += $(CCVERBOSE)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorFILEMODE= 04555
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorOWNER= root
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor.KEEP_STATE:
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor%.o: ../%.c
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor $(COMPILE.c) $<
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorall: $(PROG)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor$(PROG): $(OBJS)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor $(POST_PROCESS)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorinstall: all $(ROOTUSRSBINPROG64)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorclean:
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor $(RM) $(OBJS)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
daeb7789daed25bd92ff0b369bf152c487a8642fgryzorlint:
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor $(LINT.c) $(SRCS) $(LDLIBS)
daeb7789daed25bd92ff0b369bf152c487a8642fgryzor
699ae8b757ce4f2fea97deaa9b4a96ae9c1e3d41gryzorinclude ../../Makefile.targ
699ae8b757ce4f2fea97deaa9b4a96ae9c1e3d41gryzor