Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit 8ee78ad

Browse files
committed
Switch from -o to --out-dir.
1 parent b66cc67 commit 8ee78ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ RUST_SRC=$(shell find $(VPATH)/. -type f -name '*.rs')
1313
all: libcss.dummy
1414

1515
libcss.dummy: css.rc $(RUST_SRC)
16-
$(RUSTC) $(RUSTFLAGS) $< -o $@
16+
$(RUSTC) $(RUSTFLAGS) $< --out-dir .
1717
touch $@
1818

1919
css-test: css.rc $(RUST_SRC)
20-
$(RUSTC) $(RUSTFLAGS) $< -o $@ --test
20+
$(RUSTC) $(RUSTFLAGS) $< --out-dir . --test
2121

2222
.PHONY: check
2323
check: css-test

0 commit comments

Comments
 (0)