Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
2796N/A#
2796N/A# CDDL HEADER START
2796N/A#
2796N/A# The contents of this file are subject to the terms of the
2796N/A# Common Development and Distribution License, Version 1.0 only
2796N/A# (the "License"). You may not use this file except in compliance
2796N/A# with the License.
2796N/A#
2796N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2796N/A# or http://www.opensolaris.org/os/licensing.
2796N/A# See the License for the specific language governing permissions
2796N/A# and limitations under the License.
2796N/A#
2796N/A# When distributing Covered Code, include this CDDL HEADER in each
2796N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2796N/A# If applicable, add the following below this CDDL HEADER, with the
2796N/A# fields enclosed by brackets "[]" replaced with your own identifying
2796N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2796N/A#
2796N/A# CDDL HEADER END
2796N/A#
2796N/A#
2796N/A# Copyright 1994-2003 Sun Microsystems, Inc. All rights reserved.
2796N/A# Use is subject to license terms.
2796N/A#
2796N/A# ident "%Z%%M% %I% %E% SMI"
2796N/A#
2796N/A# cmd/fs.d/cachefs/mdbug
2796N/A#
2796N/A
2796N/AFSTYPE= cachefs
2796N/A
2796N/Ainclude ../../Makefile.fstype
2796N/A
2796N/APROGOBJS = flist.o dbug.o
2796N/A
2796N/Ainclude ../Makefile.cachefs
2796N/A
2796N/AARFLAGS= rc
2796N/ACLOBBERFILES += $(LIB)
2796N/ACPPFLAGS= -DDBUG_UNIX=1
2796N/ACCFLAGS += -D_REENTRANT
2796N/ALIB = libdbug.a
2796N/A
2796N/Aall : $(LIB)
2796N/A
2796N/A$(LIB) : $(OBJS)
2796N/A $(RM) -f $(LIB)
2796N/A $(AR) $(ARFLAGS) $(LIB) $(OBJS)
2796N/A