xref: /titanic_53/usr/src/lib/pylibbe/Makefile.com (revision 2fb4439d628ad2df0775287be1abd1ed95e7d267)
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.
24f5c2e7eaSTheo Schlossnagle# Copyright 2012 OmniTI Computer Consulting, Inc.  All rights reserved.
25f169c0eaSGlenn Lagasse#
26f169c0eaSGlenn Lagasse
27f169c0eaSGlenn LagasseLIBRARY =	libbe_py.a
28f169c0eaSGlenn LagasseVERS =
29f169c0eaSGlenn LagasseOBJECTS =	libbe_py.o
30f169c0eaSGlenn Lagasse
31f169c0eaSGlenn Lagasseinclude ../../Makefile.lib
32f169c0eaSGlenn Lagasse
33f169c0eaSGlenn LagasseLIBLINKS =
34f169c0eaSGlenn LagasseSRCDIR =	../common
35*2fb4439dSAlexander PyhalovROOTLIBDIR=	$(ROOT)/usr/lib/python$(PYTHON_VERSION)/vendor-packages
36*2fb4439dSAlexander PyhalovROOTLIBDIR64=	$(ROOT)/usr/lib/python$(PYTHON_VERSION)/vendor-packages/64
37f169c0eaSGlenn LagassePYOBJS=		$(PYSRCS:%.py=$(SRCDIR)/%.pyc)
38f169c0eaSGlenn LagassePYFILES=	$(PYSRCS) $(PYSRCS:%.py=%.pyc)
39f169c0eaSGlenn LagasseROOTPYBEFILES=  $(PYFILES:%=$(ROOTLIBDIR)/%)
40f169c0eaSGlenn Lagasse
41f169c0eaSGlenn LagasseC99MODE=        $(C99_ENABLE)
42f169c0eaSGlenn Lagasse
43f169c0eaSGlenn LagasseLIBS =		$(DYNLIB)
44f169c0eaSGlenn LagasseLDLIBS +=	-lbe -lnvpair -lc
45f169c0eaSGlenn LagasseCFLAGS +=	$(CCVERBOSE)
46*2fb4439dSAlexander PyhalovCPPFLAGS +=	-I$(ADJUNCT_PROTO)/usr/include/python$(PYTHON_VERSION) \
47494f7e12SKeith M Wesolowski		-D_FILE_OFFSET_BITS=64 -I../../libbe/common
48f169c0eaSGlenn Lagasse
49f169c0eaSGlenn Lagasse.KEEP_STATE:
50f169c0eaSGlenn Lagasse
51*2fb4439dSAlexander Pyhalovall install := LDLIBS += -lpython$(PYTHON_VERSION)
52f169c0eaSGlenn Lagasse
53f169c0eaSGlenn Lagasseall: $(PYOBJS) $(LIBS)
54f169c0eaSGlenn Lagasse
55f169c0eaSGlenn Lagasseinstall: all $(ROOTPYBEFILES)
56f169c0eaSGlenn Lagasse
57f169c0eaSGlenn Lagasse$(ROOTLIBDIR)/%: %
58f169c0eaSGlenn Lagasse	$(INS.pyfile)
59f169c0eaSGlenn Lagasse
60f169c0eaSGlenn Lagasselint: lintcheck
61f169c0eaSGlenn Lagasse
62f169c0eaSGlenn Lagasseinclude ../../Makefile.targ
63