Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
369N/A#
369N/A# CDDL HEADER START
369N/A#
369N/A# The contents of this file are subject to the terms of the
369N/A# Common Development and Distribution License, Version 1.0 only
369N/A# (the "License"). You may not use this file except in compliance
369N/A# with the License.
369N/A#
369N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
369N/A# or http://www.opensolaris.org/os/licensing.
369N/A# See the License for the specific language governing permissions
369N/A# and limitations under the License.
369N/A#
369N/A# When distributing Covered Code, include this CDDL HEADER in each
369N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
369N/A# If applicable, add the following below this CDDL HEADER, with the
369N/A# fields enclosed by brackets "[]" replaced with your own identifying
369N/A# information: Portions Copyright [yyyy] [name of copyright owner]
369N/A#
369N/A# CDDL HEADER END
3661N/A#
369N/A#
3661N/A# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
3661N/A# Use is subject to license terms.
3661N/A#
3661N/A
3661N/AFSTYPE= ufs
3661N/ALIBPROG= fssnap
3661N/A
3661N/Ainclude ../../Makefile.fstype
3661N/AFSSNAPOBJS= fssnap.o
3661N/AFSSNAPSRCS= $(FSSNAPOBJS:%.o=%.c)
3661N/A
3661N/ATOPDIR= ../..
3661N/ATOPOBJS= fssnapsup.o
3661N/ATOPSRCS= $(TOPOBJS:%.o=%.c)
3661N/A
369N/AOBJS= $(FSSNAPOBJS) $(TOPOBJS)
369N/ASRCS= $(FSSNAPSRCS) $(TOPSRCS)
369N/A
369N/ACPPFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
369N/ACERRWARN += -_gcc=-Wno-type-limits
369N/ACERRWARN += -_gcc=-Wno-implicit-function-declaration
1273N/ACERRWARN += -_gcc=-Wno-unused-variable
369N/ACERRWARN += -_gcc=-Wno-uninitialized
369N/ALDLIBS += -lkstat -ldevinfo
618N/A
1273N/A# message catalog
618N/APOFILE= fssnap.po
369N/A
369N/Acatalog: $(POFILE)
369N/A
1574N/A$(LIBPROG): $(OBJS)
1574N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
1574N/A $(POST_PROCESS)
1574N/A
1574N/A%.o: $(TOPDIR)/%.c
369N/A $(COMPILE.c) $<
369N/A
369N/A
369N/Alint: lint_SRCS
369N/A
369N/Aclean:
369N/A $(RM) $(FSSNAPOBJS) $(TOPOBJS)
369N/A