author | Norm Jacobs <Norm.Jacobs@Sun.COM> |
Wed, 19 May 2010 00:08:03 -0500 | |
changeset 12 | 41aeb1fd8c2d |
parent 2 | 125cd5d2cd9e |
child 16 | 33aaaec59991 |
permissions | -rw-r--r-- |
2 | 1 |
# |
2 |
# CDDL HEADER START |
|
3 |
# |
|
4 |
# The contents of this file are subject to the terms of the |
|
5 |
# Common Development and Distribution License (the "License"). |
|
6 |
# You may not use this file except in compliance with the License. |
|
7 |
# |
|
8 |
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
|
9 |
# or http://www.opensolaris.org/os/licensing. |
|
10 |
# See the License for the specific language governing permissions |
|
11 |
# and limitations under the License. |
|
12 |
# |
|
13 |
# When distributing Covered Code, include this CDDL HEADER in each |
|
14 |
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
|
15 |
# If applicable, add the following below this CDDL HEADER, with the |
|
16 |
# fields enclosed by brackets "[]" replaced with your own identifying |
|
17 |
# information: Portions Copyright [yyyy] [name of copyright owner] |
|
18 |
# |
|
19 |
# CDDL HEADER END |
|
20 |
# |
|
21 |
# Copyright (c) 2010, Oracle and/or it's affiliates. All rights reserved. |
|
22 |
# |
|
23 |
||
12
41aeb1fd8c2d
Fix MACH32/MACH64 so more than one architecture can build in the same workspace
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
2
diff
changeset
|
24 |
$(COMPONENT_SRC)/build-$(MACH32)/.built: BITS=32 |
41aeb1fd8c2d
Fix MACH32/MACH64 so more than one architecture can build in the same workspace
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
2
diff
changeset
|
25 |
$(COMPONENT_SRC)/build-$(MACH64)/.built: BITS=32 |
41aeb1fd8c2d
Fix MACH32/MACH64 so more than one architecture can build in the same workspace
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
2
diff
changeset
|
26 |
$(COMPONENT_SRC)/build-$(MACH32)/.installed: BITS=32 |
41aeb1fd8c2d
Fix MACH32/MACH64 so more than one architecture can build in the same workspace
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
2
diff
changeset
|
27 |
$(COMPONENT_SRC)/build-$(MACH64)/.installed: BITS=64 |
2 | 28 |
|
29 |
||
30 |
# build the configured source |
|
31 |
$(COMPONENT_SRC)/build-%/.built: $(COMPONENT_SRC)/.prep |
|
32 |
$(RM) -r $(@D) ; $(MKDIR) $(@D) |
|
33 |
$(COMPONENT_PRE_BUILD_ACTION) |
|
34 |
(cd $(COMPONENT_SRC) ; env - $(PYTHON_ENV) $(PYTHON.$(BITS)) ./setup.py build --build-temp $(@D:$(COMPONENT_SRC)/%=%)) |
|
35 |
$(COMPONENT_POST_BUILD_ACTION) |
|
36 |
$(TOUCH) $@ |
|
37 |
||
38 |
# install the built source into a prototype area |
|
39 |
$(COMPONENT_SRC)/build-%/.installed: $(COMPONENT_SRC)/build-%/.built |
|
40 |
$(COMPONENT_PRE_INSTALL_ACTION) |
|
41 |
(cd $(COMPONENT_SRC) ; env - $(PYTHON_ENV) $(PYTHON.$(BITS)) ./setup.py install --root $(PROTO_DIR)) |
|
42 |
$(COMPONENT_POST_INSTALL_ACTION) |
|
43 |
$(TOUCH) $@ |