Makefile revision f169c0eae91b2ee787cf8d6dcf8edd9159d4c9e2
259N/A#
259N/A# CDDL HEADER START
259N/A#
259N/A# The contents of this file are subject to the terms of the
259N/A# Common Development and Distribution License (the "License").
259N/A# You may not use this file except in compliance with the License.
259N/A#
259N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
259N/A# or http://www.opensolaris.org/os/licensing.
259N/A# See the License for the specific language governing permissions
259N/A# and limitations under the License.
259N/A#
259N/A# When distributing Covered Code, include this CDDL HEADER in each
259N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
259N/A# If applicable, add the following below this CDDL HEADER, with the
259N/A# fields enclosed by brackets "[]" replaced with your own identifying
259N/A# information: Portions Copyright [yyyy] [name of copyright owner]
259N/A#
259N/A# CDDL HEADER END
259N/A#
259N/A
259N/A#
259N/A# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
259N/A#
259N/A
259N/Ainclude ../Makefile.lib
259N/A
259N/AHDRS= libbe.h \
259N/A libbe_priv.h
618N/A
259N/AHDRDIR= common
618N/A
259N/ASUBDIRS= $(MACH)
259N/ATESTDIR= tbeadm
259N/A
259N/Aall := TARGET= all
259N/Aclean := TARGET= clean
259N/Aclobber := TARGET= clobber
259N/Ainstall := TARGET= install
259N/Alint := TARGET= lint
259N/Atest := TARGET= test
259N/A
259N/APOFILE = libbe.po
259N/AMSGFILES = `$(GREP) -l gettext $(HDRDIR)/*.[ch]`
259N/A
259N/A.KEEP_STATE:
259N/A
259N/Aall install lint: install_h $(SUBDIRS)
259N/A
259N/Aclean clobber: $(SUBDIRS) $(TESTDIR)
259N/A
259N/A$(POFILE): pofile_MSGFILES
259N/A
259N/Ainstall_h: $(ROOTHDRS)
259N/A
259N/Acheck: $(CHECKHDRS)
259N/A
259N/A_msg: $(MSGDOMAINPOFILE)
259N/A
259N/Atest:
259N/A cd tbeadm; pwd; $(MAKE) install
259N/A
259N/A$(TESTDIR): FRC
259N/A @cd $@; pwd; $(MAKE) $(TARGET)
259N/A
259N/A$(SUBDIRS): FRC
259N/A @cd $@; pwd; $(MAKE) $(TARGET)
259N/A
259N/AFRC:
259N/A
259N/Ainclude $(SRC)/Makefile.msg.targ
259N/Ainclude $(SRC)/lib/Makefile.targ
259N/A