Makefile revision 2
375N/A#
375N/A# CDDL HEADER START
375N/A#
375N/A# The contents of this file are subject to the terms of the
375N/A# Common Development and Distribution License (the "License").
375N/A# You may not use this file except in compliance with the License.
375N/A#
375N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
375N/A# or http://www.opensolaris.org/os/licensing.
375N/A# See the License for the specific language governing permissions
375N/A# and limitations under the License.
375N/A#
375N/A# When distributing Covered Code, include this CDDL HEADER in each
375N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
375N/A# If applicable, add the following below this CDDL HEADER, with the
375N/A# fields enclosed by brackets "[]" replaced with your own identifying
375N/A# information: Portions Copyright [yyyy] [name of copyright owner]
375N/A#
375N/A# CDDL HEADER END
375N/A#
5680N/A
375N/A#
5680N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
5680N/A# Use is subject to license terms.
5680N/A#
375N/A# lib/cfgadm_plugins/sbd/Makefile
375N/A
375N/Ainclude ../../../Makefile.master
375N/A
375N/ASUBDIRS= $(MACH) $(BUILD64) $(MACH64)
844N/A
844N/Aall := TARGET= all
375N/Aclean := TARGET= clean
1258N/Aclobber := TARGET= clobber
375N/Adelete := TARGET= delete
375N/Ainstall := TARGET= install
375N/Alint := TARGET= lint
375N/A_msg := TARGET= _msg
375N/Apackage := TARGET= package
375N/A
375N/ATEXT_DOMAIN= SUNW_OST_OSLIB
375N/ASDB_XCL_FILE= sbd.xcl
375N/AXGETFLAGS= -a -x $(SDB_XCL_FILE)
844N/APOFILE= sbd.po
844N/APOFILES= generic.po
375N/A
4194N/ASED= sed
2899N/AGREP= grep
2899N/A
2899N/A.KEEP_STATE:
4194N/A
375N/Aall clean clobber delete install lint package: $(SUBDIRS)
5680N/A
375N/A$(MACH) $(MACH64): FRC
375N/A @cd $@; pwd; $(MAKE) $(TARGET)
375N/A
375N/A_msg: $(MSGDOMAIN) $(POFILE)
375N/A $(RM) $(MSGDOMAIN)/$(POFILE)
375N/A $(CP) $(POFILE) $(MSGDOMAIN)
375N/A
375N/A$(POFILE): $(POFILES)
375N/A $(RM) $@
375N/A $(CAT) $(POFILES) > $@
375N/A
3725N/A$(POFILES): $(SDB_XCL_FILE)
3725N/A $(RM) messages.po
3725N/A $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext */*.[ch]`
3725N/A $(SED) -e '/^# msg/d' -e '/^domain/d' messages.po > $@
3725N/A $(RM) messages.po
3725N/A
3725N/AFRC:
3854N/A