author | osayama <osamu.sayama@oracle.com> |
Fri, 16 Sep 2016 08:38:07 +0900 | |
changeset 6914 | 0c9c2d460328 |
parent 4362 | 0a8849e52e36 |
child 7760 | 4ab84455407c |
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 |
# |
|
4196
d697072a92f5
19782029 userland should be able to build from SCM repositories
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
1188
diff
changeset
|
21 |
# Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. |
2 | 22 |
# |
23 |
||
4362
0a8849e52e36
21137286 Userland WS_TOP should be determined relative to make-rules/shared-macros.mk (fix top-level build)
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
4339
diff
changeset
|
24 |
SUBDIRS = components |
2 | 25 |
|
26 |
download: TARGET = download |
|
4196
d697072a92f5
19782029 userland should be able to build from SCM repositories
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
1188
diff
changeset
|
27 |
unpack: TARGET = unpack |
d697072a92f5
19782029 userland should be able to build from SCM repositories
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
1188
diff
changeset
|
28 |
patch: TARGET = patch |
2 | 29 |
prep: TARGET = prep |
30 |
build: TARGET = build |
|
31 |
install: TARGET = install |
|
32 |
publish: TARGET = publish |
|
33 |
validate: TARGET = validate |
|
34 |
clean: TARGET = clean |
|
35 |
clobber: TARGET = clobber |
|
36 |
setup: TARGET = setup |
|
83
9ab0deb97868
7017671 move patch to userland
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
53
diff
changeset
|
37 |
test: TARGET = test |
4339
6501cf9c29f9
21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents:
4196
diff
changeset
|
38 |
system-test: TARGET = system-test |
1038
3b4d8f56a1bf
15804658 SUNBT7185081-12.0 Userland could use component-hook target from SFW
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
83
diff
changeset
|
39 |
component-hook: TARGET = component-hook |
2 | 40 |
|
41 |
.DEFAULT: publish |
|
42 |
||
4196
d697072a92f5
19782029 userland should be able to build from SCM repositories
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
1188
diff
changeset
|
43 |
download setup unpack patch prep build install publish validate clean clobber \ |
4339
6501cf9c29f9
21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents:
4196
diff
changeset
|
44 |
test system-test component-hook: $(SUBDIRS) |
2 | 45 |
|
46 |
$(SUBDIRS): FORCE |
|
4362
0a8849e52e36
21137286 Userland WS_TOP should be determined relative to make-rules/shared-macros.mk (fix top-level build)
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
4339
diff
changeset
|
47 |
@+echo "$(TARGET) $@" ; $(MAKE) -C $@ $(TARGET) |
49 | 48 |
|
2 | 49 |
FORCE: |