xref: /titanic_41/usr/src/lib/pylibbe/Makefile (revision f5c2e7ea56aaa46a9976476fb0cb1f02b9426f07)
1f169c0eaSGlenn Lagasse#
2f169c0eaSGlenn Lagasse# CDDL HEADER START
3f169c0eaSGlenn Lagasse#
4f169c0eaSGlenn Lagasse# The contents of this file are subject to the terms of the
5f169c0eaSGlenn Lagasse# Common Development and Distribution License (the "License").
6f169c0eaSGlenn Lagasse# You may not use this file except in compliance with the License.
7f169c0eaSGlenn Lagasse#
8f169c0eaSGlenn Lagasse# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9f169c0eaSGlenn Lagasse# or http://www.opensolaris.org/os/licensing.
10f169c0eaSGlenn Lagasse# See the License for the specific language governing permissions
11f169c0eaSGlenn Lagasse# and limitations under the License.
12f169c0eaSGlenn Lagasse#
13f169c0eaSGlenn Lagasse# When distributing Covered Code, include this CDDL HEADER in each
14f169c0eaSGlenn Lagasse# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15f169c0eaSGlenn Lagasse# If applicable, add the following below this CDDL HEADER, with the
16f169c0eaSGlenn Lagasse# fields enclosed by brackets "[]" replaced with your own identifying
17f169c0eaSGlenn Lagasse# information: Portions Copyright [yyyy] [name of copyright owner]
18f169c0eaSGlenn Lagasse#
19f169c0eaSGlenn Lagasse# CDDL HEADER END
20f169c0eaSGlenn Lagasse#
21f169c0eaSGlenn Lagasse
22f169c0eaSGlenn Lagasse#
23f169c0eaSGlenn Lagasse# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24*f5c2e7eaSTheo Schlossnagle# Copyright 2012 OmniTI Computer Consulting, Inc.  All rights reserved.
25f169c0eaSGlenn Lagasse#
26f169c0eaSGlenn Lagasse
27f169c0eaSGlenn Lagasseinclude	../Makefile.lib
28f169c0eaSGlenn Lagasse
29f169c0eaSGlenn LagasseSUBDIRS=	$(MACH)
30*f5c2e7eaSTheo Schlossnagle$(BUILD64)SUBDIRS += $(MACH64)
31f169c0eaSGlenn LagasseXGETTEXT=	$(GNUXGETTEXT)
32f169c0eaSGlenn LagasseXGETFLAGS=	$(GNUXGETFLAGS)
33f169c0eaSGlenn Lagasse
34f169c0eaSGlenn Lagasseall :=		TARGET= all
35f169c0eaSGlenn Lagasseinstall :=	TARGET= install
36f169c0eaSGlenn Lagasseclean :=	TARGET= clean
37f169c0eaSGlenn Lagasseclobber :=	TARGET= clobber
38f169c0eaSGlenn Lagasselint :=		TARGET= lint
39f169c0eaSGlenn Lagasse
40f169c0eaSGlenn LagasseMSGFILES =	`$(FIND) . -name '*.py' -o -name '*.c'`
41f169c0eaSGlenn LagassePOFILE =	libbe_py.po
42f169c0eaSGlenn Lagasse
43f169c0eaSGlenn Lagasse.KEEP_STATE:
44f169c0eaSGlenn Lagasse
45f169c0eaSGlenn Lagasseall install clean clobber lint: $(SUBDIRS)
46f169c0eaSGlenn Lagasse
47f169c0eaSGlenn Lagasse$(POFILE):	pofile_MSGFILES
48f169c0eaSGlenn Lagasse
49f169c0eaSGlenn Lagasse_msg: $(MSGDOMAINPOFILE)
50f169c0eaSGlenn Lagasse
51f169c0eaSGlenn Lagasse$(SUBDIRS): FRC
52f169c0eaSGlenn Lagasse	@cd $@; pwd; $(MAKE) $(TARGET)
53f169c0eaSGlenn Lagasse
54f169c0eaSGlenn LagasseFRC:
55f169c0eaSGlenn Lagasse
56f169c0eaSGlenn Lagasseinclude ../../Makefile.msg.targ
57