author | Vladimir Marek <Vladimir.Marek@oracle.com> |
Mon, 25 Nov 2013 17:42:18 +0100 | |
branch | s11u1-sru |
changeset 2846 | 308d0c192664 |
parent 789 | 5f074ca23733 |
child 3533 | 0b8107a40da7 |
child 3996 | 20c0f21bbe1e |
child 4156 | 4b1def16fe9b |
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 |
# |
|
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
21 |
# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 22 |
# |
23 |
||
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
24 |
# One must do all unpack and patch in sequence. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
25 |
.NOTPARALLEL: (SOURCE_DIR)/.prep |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
26 |
|
34
d20b10eba317
prepare for zone based component builds
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
18
diff
changeset
|
27 |
UNPACK = $(WS_TOOLS)/userland-unpack |
d20b10eba317
prepare for zone based component builds
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
18
diff
changeset
|
28 |
FETCH = $(WS_TOOLS)/userland-fetch |
2 | 29 |
|
30 |
ARCHIVES += $(COMPONENT_ARCHIVE) |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
42
diff
changeset
|
31 |
CLEAN_PATHS += $(SOURCE_DIR) |
2 | 32 |
|
198
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
33 |
# In order to override PATCH_DIR and PATCH_PATTERN in component makefiles, they |
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
34 |
# need to be conditionally set here. This means that the override needs to |
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
35 |
# happen prior to including prep.mk. Otherwise other variables set here which |
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
36 |
# are based on those will be expanded too early for the override to take |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
37 |
# effect. |
198
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
38 |
# You also can't override PATCHES after including prep.mk; if you want to |
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
39 |
# append filenames to PATCHES, you'll have to set $(EXTRA_PATCHES) prior to |
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
40 |
# inclusion. |
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
41 |
PATCH_DIR ?= patches |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
42 |
|
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
43 |
# we may need patches only for use with parfait |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
44 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
45 |
PARFAIT_PATCH_DIR = parfait |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
46 |
endif |
198
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
47 |
PATCH_PATTERN ?= *.patch |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
48 |
PATCHES = $(shell find $(PATCH_DIR) $(PARFAIT_PATCH_DIR) -type f -name '$(PATCH_PATTERN)' \ |
198
172fc01ce997
7016732 move vim from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
142
diff
changeset
|
49 |
2>/dev/null | sort) $(EXTRA_PATCHES) |
2 | 50 |
|
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
51 |
# Rule to perform the patching. |
115
c360825c3a3f
7022166 userland patches should move to subdirs
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
59
diff
changeset
|
52 |
$(SOURCE_DIR)/.%ed: $(PATCH_DIR)/% |
2 | 53 |
$(GPATCH) -d $(@D) $(GPATCH_FLAGS) < $< |
54 |
$(TOUCH) $@ |
|
55 |
||
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
56 |
# Parfait patches rule: TODO - Integrate with other patch rules |
774
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
57 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
58 |
$(SOURCE_DIR)/.%ed: $(PARFAIT_PATCH_DIR)/% |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
59 |
$(GPATCH) -d $(@D) $(GPATCH_FLAGS) < $< |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
60 |
$(TOUCH) $@ |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
61 |
endif |
d0cbca26a17c
7035978 parfait support for userland bits
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
461
diff
changeset
|
62 |
|
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
63 |
# Template for download rules. |
142
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
64 |
define download-rule |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
65 |
ARCHIVES += $$(COMPONENT_ARCHIVE$(1)) |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
66 |
CLOBBER_PATHS += $$(COMPONENT_ARCHIVE$(1)) |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
67 |
$$(USERLAND_ARCHIVES)$$(COMPONENT_ARCHIVE$(1)): Makefile |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
68 |
$$(FETCH) --file $$@ \ |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
69 |
$$(COMPONENT_ARCHIVE_URL$(1):%=--url %) \ |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
70 |
$$(COMPONENT_ARCHIVE_HASH$(1):%=--hash %) |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
71 |
$$(TOUCH) $$@ |
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
72 |
endef |
2 | 73 |
|
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
74 |
# Template for patching rules, note that patching is actually done by the |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
75 |
# %.ed pattern rule above. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
76 |
# To maintain backwards compatibility, the flag PATCH_EACH_ARCHIVE must |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
77 |
# be non-empty in order to activate individual archive patching. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
78 |
define patch-rule |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
79 |
ifneq ($(strip $$(PATCH_EACH_ARCHIVE)),) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
80 |
# Prepend the patch directory to each archive patch. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
81 |
#$$(COMPONENT_PATCHES$(1):%=$$(PATCH_DIR)/%) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
82 |
#PATCHDIR_PATCHES$(1) += $$(COMPONENT_PATCHES) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
83 |
PATCHDIR_PATCHES$(1) += $$(foreach patch,$$(COMPONENT_PATCHES$(1)), \ |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
84 |
$$(PATCH_DIR)/$$(patch)) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
85 |
else |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
86 |
PATCHDIR_PATCHES = $$(PATCHES) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
87 |
endif |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
88 |
# Substitute the patch dir for the source dir on the patches |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
89 |
STAMPS$(1)+= $$(PATCHDIR_PATCHES$(1):$$(PATCH_DIR)/%=$$(SOURCE_DIR)/.%ed) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
90 |
ifeq ($(strip $(PARFAIT_BUILD)),yes) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
91 |
STAMPS$(1)+= $$(PATCHDIR_PATCHES$(1):$$(PARFAIT_PATCH_DIR)/%=$$(SOURCE_DIR)/.%ed) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
92 |
endif |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
93 |
$$(SOURCE_DIR)/.patched$(1): $$(SOURCE_DIR)/.unpacked$(1) $$(STAMPS$(1)) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
94 |
$$(TOUCH) $$@ |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
95 |
endef |
142
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
96 |
|
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
97 |
# Template for unpacking rules. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
98 |
define unpack-rule |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
99 |
$$(SOURCE_DIR)/.unpacked$(1): download Makefile $$(PATCHDIR_PATCHES$(1)) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
100 |
$$(RM) -r $$(COMPONENT_SRC$(1)) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
101 |
$$(UNPACK) $$(UNPACK_ARGS$(1)) \ |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
102 |
$$(USERLAND_ARCHIVES)$$(COMPONENT_ARCHIVE$(1)) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
103 |
$$(COMPONENT_POST_UNPACK_ACTION$(1)) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
104 |
$$(TOUCH) $$@ |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
105 |
endef |
2 | 106 |
|
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
107 |
# If an archive is defined, create a download, unpack and patch rule. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
108 |
define archive-rule |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
109 |
ifneq ($(strip $$(COMPONENT_ARCHIVE$(1))),) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
110 |
$(eval $(call download-rule,$(1))) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
111 |
$(eval $(call unpack-rule,$(1))) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
112 |
$(eval $(call patch-rule,$(1))) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
113 |
ARCHIVE_STAMPS +=$$(SOURCE_DIR)/.patched$(1) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
114 |
endif |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
115 |
endef |
2 | 116 |
|
789
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
117 |
# Calculate the number of defined archives. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
118 |
# Always generate at least the basic prep rules. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
119 |
# Work out if there are any other archives to be downloaded and patched. |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
120 |
NUM_EXTRA_ARCHIVES= 1 2 3 4 5 6 7 8 9 |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
121 |
$(eval $(call archive-rule,)) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
122 |
ifneq ($(strip $(PATCH_EACH_ARCHIVE)),) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
123 |
$(foreach suffix,$(NUM_EXTRA_ARCHIVES), \ |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
124 |
$(eval $(call archive-rule,_$(suffix)))) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
125 |
else |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
126 |
# Backwards compatibility - only download, do not unpack or patch automatically |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
127 |
$(foreach suffix,$(NUM_EXTRA_ARCHIVES), \ |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
128 |
$(eval $(call download-rule,_$(suffix)))) |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
129 |
endif |
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
130 |
|
5f074ca23733
7106955 move ksh93 from ON to userland
Edwin Beasant <Edwin.Beasant@oracle.com>
parents:
774
diff
changeset
|
131 |
$(SOURCE_DIR)/.prep: $(ARCHIVE_STAMPS) |
2 | 132 |
$(COMPONENT_PREP_ACTION) |
133 |
$(TOUCH) $@ |
|
134 |
||
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
42
diff
changeset
|
135 |
prep:: $(SOURCE_DIR)/.prep |
2 | 136 |
|
142
6f1cb90a0ef3
7026996 move tomcat to userland
Petr Sumbera <petr.sumbera@oracle.com>
parents:
115
diff
changeset
|
137 |
download:: $(ARCHIVES:%=$(USERLAND_ARCHIVES)%) |
9
97fb557d9979
lcms download link has changed
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
2
diff
changeset
|
138 |
|
2 | 139 |
clean:: |
140 |
$(RM) -r $(CLEAN_PATHS) |
|
141 |
||
142 |
clobber:: clean |
|
143 |
$(RM) -r $(CLOBBER_PATHS) |