mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Use $(MAKE) for starting sub-builds
This commit is contained in:
parent
b98eee0e46
commit
43f644971a
1 changed files with 9 additions and 9 deletions
18
Makefile.in
18
Makefile.in
|
@ -62,13 +62,13 @@ servo-test: $(SERVO_DEPS)
|
||||||
$(RUSTC) $(RUSTFLAGS) --test -o $@ $<
|
$(RUSTC) $(RUSTFLAGS) --test -o $@ $<
|
||||||
|
|
||||||
src/rust-azure/libazure.dummy:
|
src/rust-azure/libazure.dummy:
|
||||||
make -C src/rust-azure
|
$(MAKE) -C src/rust-azure
|
||||||
|
|
||||||
src/rust-sdl/libsdl.dummy:
|
src/rust-sdl/libsdl.dummy:
|
||||||
make -C src/rust-sdl
|
$(MAKE) -C src/rust-sdl
|
||||||
|
|
||||||
src/rust-cocoa/libcocoa.dummy:
|
src/rust-cocoa/libcocoa.dummy:
|
||||||
make -C src/rust-cocoa
|
$(MAKE) -C src/rust-cocoa
|
||||||
|
|
||||||
check: $(CHECK_DEPS)
|
check: $(CHECK_DEPS)
|
||||||
|
|
||||||
|
@ -77,30 +77,30 @@ check-servo: servo-test
|
||||||
|
|
||||||
.PHONY: check-azure
|
.PHONY: check-azure
|
||||||
check-azure:
|
check-azure:
|
||||||
make check -C src/rust-azure
|
$(MAKE) check -C src/rust-azure
|
||||||
|
|
||||||
.PHONY: check-sdl
|
.PHONY: check-sdl
|
||||||
check-sdl:
|
check-sdl:
|
||||||
make check -C src/rust-sdl
|
$(MAKE) check -C src/rust-sdl
|
||||||
|
|
||||||
.PHONY: check-cocoa
|
.PHONY: check-cocoa
|
||||||
check-cocoa:
|
check-cocoa:
|
||||||
make check -C src/rust-cocoa
|
$(MAKE) check -C src/rust-cocoa
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean: $(CLEAN_DEPS)
|
clean: $(CLEAN_DEPS)
|
||||||
|
|
||||||
.PHONY: clean-azure
|
.PHONY: clean-azure
|
||||||
clean-azure:
|
clean-azure:
|
||||||
make clean -C src/rust-azure
|
$(MAKE) clean -C src/rust-azure
|
||||||
|
|
||||||
.PHONY: clean-sdl
|
.PHONY: clean-sdl
|
||||||
clean-sdl:
|
clean-sdl:
|
||||||
make clean -C src/rust-sdl
|
$(MAKE) clean -C src/rust-sdl
|
||||||
|
|
||||||
.PHONY: clean-cocoa
|
.PHONY: clean-cocoa
|
||||||
clean-cocoa:
|
clean-cocoa:
|
||||||
make clean -C src/rust-cocoa
|
$(MAKE) clean -C src/rust-cocoa
|
||||||
|
|
||||||
.PHONY: clean-servo
|
.PHONY: clean-servo
|
||||||
clean-servo:
|
clean-servo:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue