Makefile (5084e753b79a753c8b532c06eb3ad1d025e8e472) | Makefile (2ad72058bc680e30f084e9f9ba8ceb0f77386821) |
---|---|
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 --- 122 unchanged lines hidden (view full) --- 131 if [ ! -d "$$CLOSED_ROOT" ]; then \ 132 $(ECHO) "Error: if closed sources are not present," \ 133 "ON_CLOSED_BINS must point to closed binaries."; \ 134 $(ECHO) "root_$(MACH)$${RELEASE_BUILD+-nd} is not" \ 135 "present in $$ON_CLOSED_BINS."; \ 136 exit 1; \ 137 fi; \ 138 $(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \ | 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 --- 122 unchanged lines hidden (view full) --- 131 if [ ! -d "$$CLOSED_ROOT" ]; then \ 132 $(ECHO) "Error: if closed sources are not present," \ 133 "ON_CLOSED_BINS must point to closed binaries."; \ 134 $(ECHO) "root_$(MACH)$${RELEASE_BUILD+-nd} is not" \ 135 "present in $$ON_CLOSED_BINS."; \ 136 exit 1; \ 137 fi; \ 138 $(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \ |
139 (cd $$CLOSED_ROOT; tar cf - .) | \ 140 (cd $(ROOT); tar xBpf -); \ | 139 (cd $$CLOSED_ROOT; \ 140 $(TAR) cfX - $(CODEMGR_WS)/exception_lists/closed-bins .) | \ 141 (cd $(ROOT); $(TAR) xBpf -); \ |
141 fi 142 143# 144# Declare what parts can be built in parallel 145# DUMMY at the end is used in case macro expansion produces an empty string to 146# prevent everything going in parallel 147# 148.PARALLEL: $(PARALLEL_HEADERS) DUMMY --- 233 unchanged lines hidden --- | 142 fi 143 144# 145# Declare what parts can be built in parallel 146# DUMMY at the end is used in case macro expansion produces an empty string to 147# prevent everything going in parallel 148# 149.PARALLEL: $(PARALLEL_HEADERS) DUMMY --- 233 unchanged lines hidden --- |