author | Sonam Gupta <sonam.x.gupta@oracle.com> |
Sun, 10 Feb 2013 22:22:25 -0800 | |
branch | s11u1-sru |
changeset 2487 | 2cbbabd0bbf4 |
parent 774 | d0cbca26a17c |
child 1352 | 1358a1e1ff4c |
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 |
# |
|
698
7144bcdfe7dd
7143131 hi ho, hi ho, it's off to nine we go
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
278
diff
changeset
|
21 |
# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 22 |
# |
23 |
||
24 |
# |
|
25 |
# Rules and Macros for building opens source software that uses configure / |
|
26 |
# GNU auto* tools to configure their build for the system they are on. This |
|
27 |
# uses GNU Make to build the components to take advantage of the viewpath |
|
28 |
# support and build multiple version (32/64 bit) from a shared source. |
|
29 |
# |
|
30 |
# To use these rules, include ../make-rules/configure.mk in your Makefile |
|
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
31 |
# and define "build", "install", and "test" targets appropriate to building |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
32 |
# your component. |
2 | 33 |
# Ex: |
34 |
# |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
35 |
# build: $(SOURCE_DIR)/build/$(MACH32)/.built \ |
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
36 |
# $(SOURCE_DIR)/build/$(MACH64)/.built |
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
37 |
# |
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
38 |
# install: $(SOURCE_DIR)/build/$(MACH32)/.installed \ |
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
39 |
# $(SOURCE_DIR)/build/$(MACH64)/.installed |
2 | 40 |
# |
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
41 |
# test: $(SOURCE_DIR)/build/$(MACH32)/.tested \ |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
42 |
# $(SOURCE_DIR)/build/$(MACH64)/.tested |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
43 |
# |
2 | 44 |
# Any additional pre/post configure, build, or install actions can be specified |
45 |
# in your make file by setting them in on of the following macros: |
|
46 |
# COMPONENT_PRE_CONFIGURE_ACTION, COMPONENT_POST_CONFIGURE_ACTION |
|
47 |
# COMPONENT_PRE_BUILD_ACTION, COMPONENT_POST_BUILD_ACTION |
|
48 |
# COMPONENT_PRE_INSTALL_ACTION, COMPONENT_POST_INSTALL_ACTION |
|
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
49 |
# COMPONENT_PRE_TEST_ACTION, COMPONENT_POST_TEST_ACTION |
2 | 50 |
# |
51 |
# If component specific make targets need to be used for build or install, they |
|
52 |
# can be specified in |
|
53 |
# COMPONENT_BUILD_TARGETS, COMPONENT_INSTALL_TARGETS |
|
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
54 |
# COMPONENT_TEST_TARGETS |
2 | 55 |
# |
56 |
||
58
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
57 |
CONFIGURE_PREFIX = /usr |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
58 |
|
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
59 |
CONFIGURE_BINDIR.32 = $(CONFIGURE_PREFIX)/bin |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
60 |
CONFIGURE_BINDIR.64 = $(CONFIGURE_PREFIX)/bin/$(MACH64) |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
61 |
CONFIGURE_LIBDIR.32 = $(CONFIGURE_PREFIX)/lib |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
62 |
CONFIGURE_LIBDIR.64 = $(CONFIGURE_PREFIX)/lib/$(MACH64) |
151
f9e42a3f7095
7030982 hgk is delivered 444, breaks 'hg view'
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
119
diff
changeset
|
63 |
CONFIGURE_SBINDIR.32 = $(CONFIGURE_PREFIX)/sbin |
f9e42a3f7095
7030982 hgk is delivered 444, breaks 'hg view'
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
119
diff
changeset
|
64 |
CONFIGURE_SBINDIR.64 = $(CONFIGURE_PREFIX)/sbin/$(MACH64) |
58
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
65 |
CONFIGURE_MANDIR = $(CONFIGURE_PREFIX)/share/man |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
66 |
CONFIGURE_LOCALEDIR = $(CONFIGURE_PREFIX)/share/locale |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
67 |
# all texinfo documentation seems to go to /usr/share/info no matter what |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
68 |
CONFIGURE_INFODIR = /usr/share/info |
119
c1d2498bb363
7024880 Move fastcgi to Userland
Srinivasa Sarva <srinivasa.sarva@oracle.com>
parents:
62
diff
changeset
|
69 |
CONFIGURE_INCLUDEDIR = /usr/include |
58
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
70 |
|
57
91dc164c5b46
7010243 userland should pass CONFIG_SHELL in the configure environment
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
71 |
CONFIGURE_ENV = CONFIG_SHELL="$(CONFIG_SHELL)" |
91dc164c5b46
7010243 userland should pass CONFIG_SHELL in the configure environment
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
72 |
|
278
77b380ba9d84
7045614 Move Apache Web server to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
206
diff
changeset
|
73 |
CONFIGURE_DEFAULT_DIRS?=yes |
77b380ba9d84
7045614 Move Apache Web server to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
206
diff
changeset
|
74 |
|
3
7b8e0c0bb2e8
fix compiler selection for configure based builds
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
2
diff
changeset
|
75 |
CONFIGURE_OPTIONS += CC="$(CC)" |
206
a4474882bf60
7010355 python needs to be packaged to separate out non-core dependencies
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
181
diff
changeset
|
76 |
CONFIGURE_OPTIONS += CXX="$(CXX)" |
58
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
77 |
CONFIGURE_OPTIONS += --prefix=$(CONFIGURE_PREFIX) |
278
77b380ba9d84
7045614 Move Apache Web server to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
206
diff
changeset
|
78 |
ifeq ($(CONFIGURE_DEFAULT_DIRS),yes) |
58
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
79 |
CONFIGURE_OPTIONS += --mandir=$(CONFIGURE_MANDIR) |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
80 |
CONFIGURE_OPTIONS += --bindir=$(CONFIGURE_BINDIR.$(BITS)) |
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
81 |
CONFIGURE_OPTIONS += --libdir=$(CONFIGURE_LIBDIR.$(BITS)) |
151
f9e42a3f7095
7030982 hgk is delivered 444, breaks 'hg view'
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
119
diff
changeset
|
82 |
CONFIGURE_OPTIONS += --sbindir=$(CONFIGURE_SBINDIR.$(BITS)) |
278
77b380ba9d84
7045614 Move Apache Web server to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
206
diff
changeset
|
83 |
endif |
62
519e6e3788ce
7013265 userland could use a tool to aid in SUNW package generation
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
59
diff
changeset
|
84 |
CONFIGURE_OPTIONS += $(CONFIGURE_OPTIONS.$(BITS)) |
58
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
85 |
|
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
86 |
COMPONENT_INSTALL_ARGS += DESTDIR=$(PROTO_DIR) |
2 | 87 |
|
181
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
168
diff
changeset
|
88 |
$(BUILD_DIR_32)/.configured: BITS=32 |
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
168
diff
changeset
|
89 |
$(BUILD_DIR_64)/.configured: BITS=64 |
2 | 90 |
|
62
519e6e3788ce
7013265 userland could use a tool to aid in SUNW package generation
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
59
diff
changeset
|
91 |
CONFIGURE_ENV += $(CONFIGURE_ENV.$(BITS)) |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
92 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
93 |
# parfait creates '*.bc' files which can confuse configure's |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
94 |
# object/exe extension detection. which we really don't need it |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
95 |
# to do anyway, so we'll just tell it what they are. |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
96 |
CONFIGURE_ENV += ac_cv_objext=o |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
97 |
CONFIGURE_ENV += ac_cv_exeext="" |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
98 |
# this is fixed in the clang compiler but we can't use it yet |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
99 |
CONFIGURE_ENV += ac_cv_header_stdbool_h=yes |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
100 |
endif |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
101 |
|
2 | 102 |
|
698
7144bcdfe7dd
7143131 hi ho, hi ho, it's off to nine we go
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
278
diff
changeset
|
103 |
# temporarily work around some issues |
7144bcdfe7dd
7143131 hi ho, hi ho, it's off to nine we go
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
278
diff
changeset
|
104 |
CONFIGURE_ENV += "ac_cv_func_realloc_0_nonnull=yes" |
7144bcdfe7dd
7143131 hi ho, hi ho, it's off to nine we go
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
278
diff
changeset
|
105 |
COMPONENT_BUILD_ENV += "ac_cv_func_realloc_0_nonnull=yes" |
7144bcdfe7dd
7143131 hi ho, hi ho, it's off to nine we go
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
278
diff
changeset
|
106 |
|
2 | 107 |
# configure the unpacked source for building 32 and 64 bit version |
151
f9e42a3f7095
7030982 hgk is delivered 444, breaks 'hg view'
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
119
diff
changeset
|
108 |
CONFIGURE_SCRIPT = $(SOURCE_DIR)/configure |
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
109 |
$(BUILD_DIR)/%/.configured: $(SOURCE_DIR)/.prep |
2 | 110 |
($(RM) -rf $(@D) ; $(MKDIR) $(@D)) |
111 |
$(COMPONENT_PRE_CONFIGURE_ACTION) |
|
16
33aaaec59991
update _DATE/_TIME compiler chatter reduction bits.
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
12
diff
changeset
|
112 |
(cd $(@D) ; $(ENV) $(CONFIGURE_ENV) $(CONFIG_SHELL) \ |
151
f9e42a3f7095
7030982 hgk is delivered 444, breaks 'hg view'
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
119
diff
changeset
|
113 |
$(CONFIGURE_SCRIPT) $(CONFIGURE_OPTIONS)) |
2 | 114 |
$(COMPONENT_POST_CONFIGURE_ACTION) |
115 |
$(TOUCH) $@ |
|
116 |
||
117 |
# build the configured source |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
118 |
$(BUILD_DIR)/%/.built: $(BUILD_DIR)/%/.configured |
2 | 119 |
$(COMPONENT_PRE_BUILD_ACTION) |
16
33aaaec59991
update _DATE/_TIME compiler chatter reduction bits.
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
12
diff
changeset
|
120 |
(cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \ |
151
f9e42a3f7095
7030982 hgk is delivered 444, breaks 'hg view'
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
119
diff
changeset
|
121 |
$(GMAKE) $(COMPONENT_BUILD_ARGS) $(COMPONENT_BUILD_TARGETS)) |
2 | 122 |
$(COMPONENT_POST_BUILD_ACTION) |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
123 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
124 |
-$(PARFAIT) build |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
125 |
endif |
2 | 126 |
$(TOUCH) $@ |
127 |
||
128 |
# install the built source into a prototype area |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
129 |
$(BUILD_DIR)/%/.installed: $(BUILD_DIR)/%/.built |
2 | 130 |
$(COMPONENT_PRE_INSTALL_ACTION) |
16
33aaaec59991
update _DATE/_TIME compiler chatter reduction bits.
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
12
diff
changeset
|
131 |
(cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) $(GMAKE) \ |
58
d8024c042a00
7011369 gmake complains about fresh userland bits
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
57
diff
changeset
|
132 |
$(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS)) |
2 | 133 |
$(COMPONENT_POST_INSTALL_ACTION) |
134 |
$(TOUCH) $@ |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
135 |
|
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
136 |
# test the built source |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
137 |
$(BUILD_DIR)/%/.tested: $(BUILD_DIR)/%/.built |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
138 |
$(COMPONENT_PRE_TEST_ACTION) |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
139 |
(cd $(@D) ; $(ENV) $(COMPONENT_TEST_ENV) $(GMAKE) \ |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
140 |
$(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS)) |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
141 |
$(COMPONENT_POST_TEST_ACTION) |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
142 |
$(TOUCH) $@ |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
143 |
|
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
144 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
145 |
parfait: install |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
146 |
-$(PARFAIT) build |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
147 |
else |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
148 |
parfait: |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
149 |
$(MAKE) PARFAIT_BUILD=yes parfait |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
150 |
endif |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
151 |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
152 |
clean:: |
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
58
diff
changeset
|
153 |
$(RM) -r $(BUILD_DIR) $(PROTO_DIR) |