xref: /onnv-gate/usr/src/lib/pylibbe/Makefile (revision 13013:3c7681e3e323)
1*13013Sglenn.lagasse@oracle.com#
2*13013Sglenn.lagasse@oracle.com# CDDL HEADER START
3*13013Sglenn.lagasse@oracle.com#
4*13013Sglenn.lagasse@oracle.com# The contents of this file are subject to the terms of the
5*13013Sglenn.lagasse@oracle.com# Common Development and Distribution License (the "License").
6*13013Sglenn.lagasse@oracle.com# You may not use this file except in compliance with the License.
7*13013Sglenn.lagasse@oracle.com#
8*13013Sglenn.lagasse@oracle.com# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*13013Sglenn.lagasse@oracle.com# or http://www.opensolaris.org/os/licensing.
10*13013Sglenn.lagasse@oracle.com# See the License for the specific language governing permissions
11*13013Sglenn.lagasse@oracle.com# and limitations under the License.
12*13013Sglenn.lagasse@oracle.com#
13*13013Sglenn.lagasse@oracle.com# When distributing Covered Code, include this CDDL HEADER in each
14*13013Sglenn.lagasse@oracle.com# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*13013Sglenn.lagasse@oracle.com# If applicable, add the following below this CDDL HEADER, with the
16*13013Sglenn.lagasse@oracle.com# fields enclosed by brackets "[]" replaced with your own identifying
17*13013Sglenn.lagasse@oracle.com# information: Portions Copyright [yyyy] [name of copyright owner]
18*13013Sglenn.lagasse@oracle.com#
19*13013Sglenn.lagasse@oracle.com# CDDL HEADER END
20*13013Sglenn.lagasse@oracle.com#
21*13013Sglenn.lagasse@oracle.com
22*13013Sglenn.lagasse@oracle.com#
23*13013Sglenn.lagasse@oracle.com# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24*13013Sglenn.lagasse@oracle.com#
25*13013Sglenn.lagasse@oracle.com
26*13013Sglenn.lagasse@oracle.cominclude	../Makefile.lib
27*13013Sglenn.lagasse@oracle.com
28*13013Sglenn.lagasse@oracle.comSUBDIRS=	$(MACH)
29*13013Sglenn.lagasse@oracle.comXGETTEXT=	$(GNUXGETTEXT)
30*13013Sglenn.lagasse@oracle.comXGETFLAGS=	$(GNUXGETFLAGS)
31*13013Sglenn.lagasse@oracle.com
32*13013Sglenn.lagasse@oracle.comall :=		TARGET= all
33*13013Sglenn.lagasse@oracle.cominstall :=	TARGET= install
34*13013Sglenn.lagasse@oracle.comclean :=	TARGET= clean
35*13013Sglenn.lagasse@oracle.comclobber :=	TARGET= clobber
36*13013Sglenn.lagasse@oracle.comlint :=		TARGET= lint
37*13013Sglenn.lagasse@oracle.com
38*13013Sglenn.lagasse@oracle.comMSGFILES =	`$(FIND) . -name '*.py' -o -name '*.c'`
39*13013Sglenn.lagasse@oracle.comPOFILE =	libbe_py.po
40*13013Sglenn.lagasse@oracle.com
41*13013Sglenn.lagasse@oracle.com.KEEP_STATE:
42*13013Sglenn.lagasse@oracle.com
43*13013Sglenn.lagasse@oracle.comall install clean clobber lint: $(SUBDIRS)
44*13013Sglenn.lagasse@oracle.com
45*13013Sglenn.lagasse@oracle.com$(POFILE):	pofile_MSGFILES
46*13013Sglenn.lagasse@oracle.com
47*13013Sglenn.lagasse@oracle.com_msg: $(MSGDOMAINPOFILE)
48*13013Sglenn.lagasse@oracle.com
49*13013Sglenn.lagasse@oracle.com$(SUBDIRS): FRC
50*13013Sglenn.lagasse@oracle.com	@cd $@; pwd; $(MAKE) $(TARGET)
51*13013Sglenn.lagasse@oracle.com
52*13013Sglenn.lagasse@oracle.comFRC:
53*13013Sglenn.lagasse@oracle.com
54*13013Sglenn.lagasse@oracle.cominclude ../../Makefile.msg.targ
55