blob: cd0d1ade92d5f794149461e2046126439089a8d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.PHONY: ub.build ub.combine ub.clean
ub.build: ub.build.serial
ub.build.serial:
@$(UB.BUILD.SERIAL)
ub.build.parallel:
@set -e; \
for xcconfig in $(UB.xcconfigs); do \
$(call UB.BUILD.PARALLEL,$$xcconfig) & \
children="$$children $$!"; \
echo "pid $$!: $(call UB.BUILD.PARALLEL,$$xcconfig)"; \
done; \
echo "waiting for background jobs to complete:$$children"; \
wait
ub.combine:
$(call UB.COMBINE,HandBrake.app/Contents/MacOS/HandBrake)
#ub.clean:
# $(RM.exe) -fr $(foreach n,$(UB.archs.other),ub.$n)
|