Makefile revision a778b211500c8b2b47a35aa015cd89d5548a8ad8
2080N/A#
3909N/A# CDDL HEADER START
2080N/A#
2080N/A# The contents of this file are subject to the terms of the
2080N/A# Common Development and Distribution License (the "License").
2080N/A# You may not use this file except in compliance with the License.
2362N/A#
2080N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2362N/A# or http://www.opensolaris.org/os/licensing.
2080N/A# See the License for the specific language governing permissions
2080N/A# and limitations under the License.
2080N/A#
2080N/A# When distributing Covered Code, include this CDDL HEADER in each
2080N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2080N/A# If applicable, add the following below this CDDL HEADER, with the
2080N/A# fields enclosed by brackets "[]" replaced with your own identifying
2080N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2080N/A#
2080N/A# CDDL HEADER END
2080N/A#
2362N/A#
2362N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
2362N/A# Use is subject to license terms.
2080N/A#
2080N/A#ident "%Z%%M% %I% %E% SMI"
2080N/A#
2080N/A# cmd/abi/appcert/scripts/Makefile
2080N/A#
2080N/A
2080N/APROG= appcert
2080N/AAPPCERT_SUBCMDS= symcheck symprof symreport abi_index
4632N/AMODULES= AppcertUtil.pm
4632N/A
2080N/ASCRIPTS= $(PROG) $(APPCERT_SUBCMDS)
2080N/AMESSAGES= $(SCRIPTS:%=%.po) $(MODULES:%.pm=%.po)
2080N/A
2080N/A
2080N/ACLEANFILES= $(SCRIPTS) $(MESSAGES)
2080N/ACLOBBERFILES= $(SCRIPTS) $(MESSAGES)
2080N/A
2080N/Ainclude $(SRC)/cmd/Makefile.cmd
2080N/A
2080N/AROOTLIBABIDIR = $(ROOTLIB)/abi/appcert
2080N/AROOTLIBABIFILES = $(APPCERT_SUBCMDS:%=$(ROOTLIBABIDIR)/%) \
2080N/A $(MODULES:%=$(ROOTLIBABIDIR)/%)
2080N/A
2080N/A.KEEP_STATE:
2080N/A
2080N/Aall: $(SCRIPTS) $(MODULES)
2080N/A
2080N/A#
2080N/A# install targets
2080N/A# Note: Makefile.cmd has a rule to cover $(ROOTSHFILES), but
2080N/A# $(ROOTLIBABIFILES) are special install targets (go into
2080N/A# dirs not covered by Makefile.cmd), so we provide an explicit
2080N/A# rule for that.
2080N/A#
2080N/A
2080N/Ainstall: all .WAIT $(ROOTPROG) $(ROOTLIBABIDIR) .WAIT $(ROOTLIBABIFILES)
2080N/A
4419N/A_msg: $(MSGDOMAIN) $(MESSAGES)
4419N/A $(CP) $(MESSAGES) $(MSGDOMAIN)
4419N/A
4419N/A$(MSGDOMAIN):
4419N/A $(INS.dir)
4419N/A
2080N/Aclean:
2080N/A -$(RM) $(CLEANFILES)
2080N/A
2080N/A$(ROOTBINPROG): $(PROG)
2080N/A $(INS.file)
2080N/A
2080N/A$(ROOTLIBABIDIR):
2080N/A $(INS.dir)
2080N/A
2080N/A$(ROOTLIBABIDIR)/%: %
2080N/A $(INS.file)
2080N/A
2080N/Alint:
2080N/A
2080N/Aclobber: clean
2080N/A -$(RM) $(CLOBBERFILES)
2080N/A