Update for language changes; remove pipe protocols.

This commit is contained in:
Patrick Walton 2012-10-04 11:02:53 -07:00
parent e105f3b557
commit 994c47d22b
67 changed files with 437 additions and 731 deletions

View file

@ -18,13 +18,13 @@ $(eval $(call DEF_SUBMODULE_TEST_RULES,$(submodule))))
# Testing targets
servo-test: $(DEPS_servo)
$(CFG_RUSTC) $(RFLAGS_servo) --test -o $@ $<
$(RUSTC) $(RFLAGS_servo) --test -o $@ $<
reftest: $(S)src/reftest/reftest.rs servo
$(CFG_RUSTC) $(RFLAGS_servo) -o $@ $< -L .
$(RUSTC) $(RFLAGS_servo) -o $@ $< -L .
contenttest: $(S)src/contenttest/contenttest.rs servo
$(CFG_RUSTC) $(RFLAGS_servo) -o $@ $< -L .
$(RUSTC) $(RFLAGS_servo) -o $@ $< -L .
.PHONY: check $(DEPS_CHECK)