We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59fd0f7 commit faca82aCopy full SHA for faca82a
Makefile.in
@@ -14,11 +14,11 @@ RUST_SRC=$(shell find $(VPATH)/. -type f -name '*.rs') $(COLOR_DATA_RS)
14
all: libcssparser.dummy
15
16
libcssparser.dummy: cssparser.rc $(RUST_SRC)
17
- $(RUSTC) $(RUSTFLAGS) $<
+ $(RUSTC) $(RUSTFLAGS) $< --out-dir .
18
touch $@
19
20
cssparser-test: cssparser.rc $(RUST_SRC)
21
- $(RUSTC) $(RUSTFLAGS) $< -o $@ --test
+ $(RUSTC) $(RUSTFLAGS) $< --out-dir . --test
22
23
.PHONY: check
24
check: cssparser-test
0 commit comments