Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
96fc773162e93e5b85686ab152f11baf4498d868rbb#
6f06d481dafc90f1b553f1d2828bcea50a039854fielding# CDDL HEADER START
cab10c98980b42562a7850410cecd37798e170ecrbb#
cab10c98980b42562a7850410cecd37798e170ecrbb# The contents of this file are subject to the terms of the
cab10c98980b42562a7850410cecd37798e170ecrbb# Common Development and Distribution License, Version 1.0 only
cab10c98980b42562a7850410cecd37798e170ecrbb# (the "License"). You may not use this file except in compliance
cab10c98980b42562a7850410cecd37798e170ecrbb# with the License.
71715c646d5231de578431f8961e711764b899d3fanf#
71715c646d5231de578431f8961e711764b899d3fanf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
71715c646d5231de578431f8961e711764b899d3fanf# or http://www.opensolaris.org/os/licensing.
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb# See the License for the specific language governing permissions
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb# and limitations under the License.
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb#
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb# When distributing Covered Code, include this CDDL HEADER in each
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb# If applicable, add the following below this CDDL HEADER, with the
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb# fields enclosed by brackets "[]" replaced with your own identifying
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb# information: Portions Copyright [yyyy] [name of copyright owner]
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb#
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb# CDDL HEADER END
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb#
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb#
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb# Use is subject to license terms.
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb#
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb
e76797ee89ad6fb15ad97b0f3903ae324ac44949wroweFSTYPE= ufs
e76797ee89ad6fb15ad97b0f3903ae324ac44949wroweLIBPROG= quotacheck
e76797ee89ad6fb15ad97b0f3903ae324ac44949wroweATTMK= $(LIBPROG)
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe
e76797ee89ad6fb15ad97b0f3903ae324ac44949wroweOTHERINSTALL= $(ROOTUSRSBIN)/$(LIBPROG)
e76797ee89ad6fb15ad97b0f3903ae324ac44949wroweLINKVALUE= ../lib/fs/$(FSTYPE)/$(LIBPROG)
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe
e76797ee89ad6fb15ad97b0f3903ae324ac44949wroweinclude ../../Makefile.fstype
e76797ee89ad6fb15ad97b0f3903ae324ac44949wroweCPPFLAGS += -D_LARGEFILE64_SOURCE
a1e0709c89175c34a3f72eb4a83d7ee1621a0884rbbLDLIBS += -ladm
a1e0709c89175c34a3f72eb4a83d7ee1621a0884rbbOBJS= quotacheck.o
a1e0709c89175c34a3f72eb4a83d7ee1621a0884rbbFSOBJS= preenlib.o
a1e0709c89175c34a3f72eb4a83d7ee1621a0884rbbFSSRCS= ../../preenlib.c
4b13b6bcdcfae61d3c58cc2569757651f28f2bbfrbbSRCS= $(OBJS:.o=.c)
4b13b6bcdcfae61d3c58cc2569757651f28f2bbfrbb
4b13b6bcdcfae61d3c58cc2569757651f28f2bbfrbbCERRWARN += -_gcc=-Wno-implicit-function-declaration
34ea1d36f4e1c8d66338e691793017d105cc9c32rbbCERRWARN += -_gcc=-Wno-type-limits
34ea1d36f4e1c8d66338e691793017d105cc9c32rbb
34ea1d36f4e1c8d66338e691793017d105cc9c32rbblint: lint_PROG
34ea1d36f4e1c8d66338e691793017d105cc9c32rbb
2c8f06bf370a44a3d0544ed5319355463c417132gregames$(FSOBJS): $(FSSRCS)
2c8f06bf370a44a3d0544ed5319355463c417132gregames $(COMPILE.c) -o $@ $(FSSRCS)
2c8f06bf370a44a3d0544ed5319355463c417132gregames
db06e09891b001667974483058923b88c3258324rbb$(LIBPROG): $(OBJS) $(FSOBJS)
db06e09891b001667974483058923b88c3258324rbb $(LINK.c) -o $@ $(OBJS) $(FSOBJS) $(LDLIBS)
db06e09891b001667974483058923b88c3258324rbb $(POST_PROCESS)
db06e09891b001667974483058923b88c3258324rbb
db06e09891b001667974483058923b88c3258324rbbclean:
8ba9d5e9aaaa79dba0de13f5c1b6e725d98f1dc2fanf -$(RM) $(OBJS) $(FSOBJS)
8ba9d5e9aaaa79dba0de13f5c1b6e725d98f1dc2fanf
8ba9d5e9aaaa79dba0de13f5c1b6e725d98f1dc2fanf$(ROOTUSRSBIN)/$(LIBPROG):
8ba9d5e9aaaa79dba0de13f5c1b6e725d98f1dc2fanf -$(RM) $@; $(SYMLINK) $(LINKVALUE) $@
26cf4d32b4ff8807a64b0cfa6865a7d6d171c68efanf