author | Jiri Sasek <Jiri.Sasek@Oracle.COM> |
Thu, 31 Jul 2014 01:53:13 -0700 | |
changeset 4109 | b8f324d4e07c |
parent 4091 | fca9099ab398 |
child 4252 | 891a844655c4 |
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 |
# |
|
3817
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
21 |
# Copyright (c) 2010, 2015, 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 |
# |
|
3817
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
30 |
# To use these rules, include $(WS_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" |
1512
f57514e19ede
17596443 nm -p output change breaks userland
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
1352
diff
changeset
|
105 |
CONFIGURE_ENV += "NM=/usr/gnu/bin/nm" |
698
7144bcdfe7dd
7143131 hi ho, hi ho, it's off to nine we go
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
278
diff
changeset
|
106 |
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
|
107 |
|
2 | 108 |
# 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
|
109 |
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
|
110 |
$(BUILD_DIR)/%/.configured: $(SOURCE_DIR)/.prep |
2 | 111 |
($(RM) -rf $(@D) ; $(MKDIR) $(@D)) |
112 |
$(COMPONENT_PRE_CONFIGURE_ACTION) |
|
16
33aaaec59991
update _DATE/_TIME compiler chatter reduction bits.
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
12
diff
changeset
|
113 |
(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
|
114 |
$(CONFIGURE_SCRIPT) $(CONFIGURE_OPTIONS)) |
2 | 115 |
$(COMPONENT_POST_CONFIGURE_ACTION) |
116 |
$(TOUCH) $@ |
|
117 |
||
118 |
# 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
|
119 |
$(BUILD_DIR)/%/.built: $(BUILD_DIR)/%/.configured |
2 | 120 |
$(COMPONENT_PRE_BUILD_ACTION) |
16
33aaaec59991
update _DATE/_TIME compiler chatter reduction bits.
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
12
diff
changeset
|
121 |
(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
|
122 |
$(GMAKE) $(COMPONENT_BUILD_ARGS) $(COMPONENT_BUILD_TARGETS)) |
2 | 123 |
$(COMPONENT_POST_BUILD_ACTION) |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
124 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
1352
1358a1e1ff4c
16921386 move to parfait 1.2.0.1
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
774
diff
changeset
|
125 |
-$(PARFAIT) $(@D) |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
126 |
endif |
2 | 127 |
$(TOUCH) $@ |
128 |
||
129 |
# 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
|
130 |
$(BUILD_DIR)/%/.installed: $(BUILD_DIR)/%/.built |
2 | 131 |
$(COMPONENT_PRE_INSTALL_ACTION) |
16
33aaaec59991
update _DATE/_TIME compiler chatter reduction bits.
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
12
diff
changeset
|
132 |
(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
|
133 |
$(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS)) |
2 | 134 |
$(COMPONENT_POST_INSTALL_ACTION) |
135 |
$(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
|
136 |
|
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
137 |
# test the built source |
3558
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
138 |
$(BUILD_DIR)/%/.tested-and-compared: $(BUILD_DIR)/%/.built |
3864
77a09e73626b
20548962 generated test files should be in the build directory for clobbering time
Rich Burridge <rich.burridge@oracle.com>
parents:
3817
diff
changeset
|
139 |
$(RM) -rf $(COMPONENT_TEST_BUILD_DIR) |
77a09e73626b
20548962 generated test files should be in the build directory for clobbering time
Rich Burridge <rich.burridge@oracle.com>
parents:
3817
diff
changeset
|
140 |
$(MKDIR) $(COMPONENT_TEST_BUILD_DIR) |
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
141 |
$(COMPONENT_PRE_TEST_ACTION) |
3558
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
142 |
-(cd $(COMPONENT_TEST_DIR) ; \ |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
143 |
$(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \ |
2106
adb848b3a7d4
19535379 lua's self tests are a bit of a mess
Rich Burridge <rich.burridge@oracle.com>
parents:
2022
diff
changeset
|
144 |
$(COMPONENT_TEST_CMD) \ |
3558
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
145 |
$(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS)) \ |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
146 |
&> $(COMPONENT_TEST_OUTPUT) |
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
147 |
$(COMPONENT_POST_TEST_ACTION) |
3558
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
148 |
$(COMPONENT_TEST_CREATE_TRANSFORMS) |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
149 |
$(COMPONENT_TEST_PERFORM_TRANSFORM) |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
150 |
$(COMPONENT_TEST_COMPARE) |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
151 |
$(COMPONENT_TEST_CLEANUP) |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
152 |
$(TOUCH) $@ |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
153 |
|
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
154 |
$(BUILD_DIR)/%/.tested: $(BUILD_DIR)/%/.built |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
155 |
$(COMPONENT_PRE_TEST_ACTION) |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
156 |
(cd $(COMPONENT_TEST_DIR) ; \ |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
157 |
$(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \ |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
158 |
$(COMPONENT_TEST_CMD) \ |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
159 |
$(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS)) |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
160 |
$(COMPONENT_POST_TEST_ACTION) |
2cec274f17fc
20222479 Need a method to compare test results against a master in Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
2164
diff
changeset
|
161 |
$(COMPONENT_TEST_CLEANUP) |
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
162 |
$(TOUCH) $@ |
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
156
diff
changeset
|
163 |
|
4091
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
164 |
# test the installed packages |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
165 |
$(BUILD_DIR)/%/.system-tested-and-compared: $(SOURCE_DIR)/.prep |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
166 |
$(RM) -rf $(COMPONENT_TEST_BUILD_DIR) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
167 |
$(MKDIR) $(COMPONENT_TEST_BUILD_DIR) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
168 |
$(COMPONENT_PRE_SYSTEM_TEST_ACTION) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
169 |
-(cd $(COMPONENT_SYSTEM_TEST_DIR) ; \ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
170 |
$(COMPONENT_SYSTEM_TEST_ENV_CMD) $(COMPONENT_SYSTEM_TEST_ENV) \ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
171 |
$(COMPONENT_SYSTEM_TEST_CMD) \ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
172 |
$(COMPONENT_SYSTEM_TEST_ARGS) $(COMPONENT_SYSTEM_TEST_TARGETS)) \ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
173 |
&> $(COMPONENT_TEST_OUTPUT) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
174 |
$(COMPONENT_POST_SYSTEM_TEST_ACTION) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
175 |
$(COMPONENT_TEST_CREATE_TRANSFORMS) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
176 |
$(COMPONENT_TEST_PERFORM_TRANSFORM) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
177 |
$(COMPONENT_TEST_COMPARE) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
178 |
$(COMPONENT_SYSTEM_TEST_CLEANUP) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
179 |
$(TOUCH) $@ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
180 |
|
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
181 |
$(BUILD_DIR)/%/.system-tested: $(SOURCE_DIR)/.prep |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
182 |
$(COMPONENT_PRE_SYSTEM_TEST_ACTION) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
183 |
(cd $(COMPONENT_SYSTEM_TEST_DIR) ; \ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
184 |
$(COMPONENT_SYSTEM_TEST_ENV_CMD) $(COMPONENT_SYSTEM_TEST_ENV) \ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
185 |
$(COMPONENT_SYSTEM_TEST_CMD) \ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
186 |
$(COMPONENT_SYSTEM_TEST_ARGS) $(COMPONENT_SYSTEM_TEST_TARGETS)) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
187 |
$(COMPONENT_POST_SYSTEM_TEST_ACTION) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
188 |
$(COMPONENT_SYSTEM_TEST_CLEANUP) |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
189 |
$(TOUCH) $@ |
fca9099ab398
20808505 gmake system-test
John Beck <John.Beck@Oracle.COM>
parents:
3864
diff
changeset
|
190 |
|
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
191 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
1352
1358a1e1ff4c
16921386 move to parfait 1.2.0.1
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
774
diff
changeset
|
192 |
parfait: build |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
193 |
else |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
194 |
parfait: |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
195 |
$(MAKE) PARFAIT_BUILD=yes parfait |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
196 |
endif |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
698
diff
changeset
|
197 |
|
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
|
198 |
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
|
199 |
$(RM) -r $(BUILD_DIR) $(PROTO_DIR) |
3817
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
200 |
|
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
201 |
REQUIRED_PACKAGES += developer/build/autoconf |
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
202 |
REQUIRED_PACKAGES += developer/build/automake |
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
203 |
REQUIRED_PACKAGES += developer/build/gnu-make |
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
204 |
REQUIRED_PACKAGES += developer/build/libtool |
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
205 |
REQUIRED_PACKAGES += developer/build/pkg-config |
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
206 |
REQUIRED_PACKAGES += developer/macro/gnu-m4 |
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
207 |
REQUIRED_PACKAGES += file/gnu-coreutils |
30b42c38bbc4
15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
3558
diff
changeset
|
208 |
REQUIRED_PACKAGES += library/libtool/libltdl |