Makefile revision fcf3ce441efd61da9bb2884968af01cb7c1452cc
201N/A# CDDL HEADER START
201N/A#
201N/A# The contents of this file are subject to the terms of the
201N/A# Common Development and Distribution License (the "License").
201N/A# You may not use this file except in compliance with the License.
201N/A#
201N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
201N/A# or http://www.opensolaris.org/os/licensing.
201N/A# See the License for the specific language governing permissions
201N/A# and limitations under the License.
201N/A#
201N/A# When distributing Covered Code, include this CDDL HEADER in each
201N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
201N/A# If applicable, add the following below this CDDL HEADER, with the
201N/A# fields enclosed by brackets "[]" replaced with your own identifying
201N/A# information: Portions Copyright [yyyy] [name of copyright owner]
201N/A#
201N/A# CDDL HEADER END
201N/A#
201N/A#
201N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
201N/A# Use is subject to license terms.
5680N/A#
201N/A
5680N/ADYNPROG= dsbitmap
201N/A
201N/Ainclude ../../Makefile.cmd
201N/Ainclude ../Makefile.com
3039N/A
618N/APROG = $(DYNPROG)
201N/A
201N/Adsbitmap := POBJS = dsbitmap.o
844N/A
3039N/AOBJS= dsbitmap.o
201N/ASRCS= $(OBJS:%.o=%.c)
201N/APOFILE= $(OBJS:%.o=%.po)
3039N/A
2899N/ACFLAGS += -v
5680N/ALDLIBS += -lunistat -ladm
5680N/ALINTFLAGS += -Xa -n -s -x -m -u -Dlint -errhdr=%user
5680N/ALINTFLAGS += -erroff=E_SEC_PRINTF_VAR_FMT
5680N/A
5680N/Aall := TARGET= all
201N/Ainstall := TARGET= install
201N/Aclean := TARGET= clean
201N/Aclobber := TARGET= clobber
201N/Alint := TARGET= lint
3039N/A
3039N/A.KEEP_STATE:
5680N/A
3039N/A.PARALLEL: $(OBJS)
201N/A
201N/Aall: $(PROG)
3817N/A
install: all $(ROOTPROG)
lint: lint_SRCS
clean:
$(RM) *.o $(POFILE)
$(PROG): $$(POBJS)
$(LINK.c) $(POBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
check: $(PROG).c
$(CSTYLE) -pP $(SRCS:%=%)
FRC:
include ../../Makefile.targ