Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync# CDDL HEADER START
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync# The contents of this file are subject to the terms of the
4c221b0da1816acf2ca302b10092df059484468dvboxsync# Common Development and Distribution License, Version 1.0 only
4c221b0da1816acf2ca302b10092df059484468dvboxsync# (the "License"). You may not use this file except in compliance
4c221b0da1816acf2ca302b10092df059484468dvboxsync# with the License.
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4c221b0da1816acf2ca302b10092df059484468dvboxsync# or http://www.opensolaris.org/os/licensing.
4c221b0da1816acf2ca302b10092df059484468dvboxsync# See the License for the specific language governing permissions
4c221b0da1816acf2ca302b10092df059484468dvboxsync# and limitations under the License.
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync# When distributing Covered Code, include this CDDL HEADER in each
4c221b0da1816acf2ca302b10092df059484468dvboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4c221b0da1816acf2ca302b10092df059484468dvboxsync# If applicable, add the following below this CDDL HEADER, with the
4c221b0da1816acf2ca302b10092df059484468dvboxsync# fields enclosed by brackets "[]" replaced with your own identifying
4c221b0da1816acf2ca302b10092df059484468dvboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync# CDDL HEADER END
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
4c221b0da1816acf2ca302b10092df059484468dvboxsync# Use is subject to license terms.
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync#ident "%Z%%M% %I% %E% SMI"
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync# cmd/projadd/Makefile
4c221b0da1816acf2ca302b10092df059484468dvboxsync#
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncinclude ../Makefile.cmd
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncPROGS= projadd projmod projdel
4c221b0da1816acf2ca302b10092df059484468dvboxsyncUSRSBINPROGS= $(PROGS:%=$(ROOTUSRSBIN)/%)
4c221b0da1816acf2ca302b10092df059484468dvboxsyncPOFILES= $(PROGS:%=%.po)
4c221b0da1816acf2ca302b10092df059484468dvboxsyncPOFILE=
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncCLOBBERFILES= $(PROGS)
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncGROUP= sys
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsync.KEEP_STATE:
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncall: $(PROGS)
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncinstall : all .WAIT $(USRSBINPROGS)
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncclean lint:
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsync_msg: $(MSGDOMAIN) $(POFILES)
4c221b0da1816acf2ca302b10092df059484468dvboxsync $(CP) $(POFILES) $(MSGDOMAIN)
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsync$(MSGDOMAIN):
4c221b0da1816acf2ca302b10092df059484468dvboxsync $(INS.dir)
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsyncclobber: clean
4c221b0da1816acf2ca302b10092df059484468dvboxsync -$(RM) $(PROG) $(CLOBBERFILES)
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsync%: %.pl
4c221b0da1816acf2ca302b10092df059484468dvboxsync $(SED) -e "s@TEXT_DOMAIN@\"$(TEXT_DOMAIN)\"@" $< > $@
4c221b0da1816acf2ca302b10092df059484468dvboxsync
4c221b0da1816acf2ca302b10092df059484468dvboxsync$(ROOTUSRSBIN)/% : %
4c221b0da1816acf2ca302b10092df059484468dvboxsync $(INS.file)
4c221b0da1816acf2ca302b10092df059484468dvboxsync%.po : %.pl
4c221b0da1816acf2ca302b10092df059484468dvboxsync $(XGETTEXT) -d $(@:%.po=%) $<
4c221b0da1816acf2ca302b10092df059484468dvboxsync