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