Skip to content

Commit d16c693

Browse files
thejpsterwhitequark
authored and
whitequark
committed
Allow svd2rust, form and cargo fmt to be replaced. Remove touch target.
1 parent c92cee0 commit d16c693

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Makefile

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
DEVICES := tm4c123x tm4c129x
22
SVD2RUST ?= svd2rust
3+
FORM ?= form
4+
CARGO_FMT ?= cargo fmt
35

46
.SECONDARY:
57

@@ -13,11 +15,7 @@ purge:
1315
touch -t 198001010000 $(patsubst %,crates/%/src/lib.rs,$(DEVICES))
1416

1517
.PHONY: rebuild
16-
rebuild: touch all
17-
18-
.PHONY: touch
19-
touch:
20-
touch ./targetdb/devices/*.xml
18+
rebuild: purge all
2119

2220
svd/%-vendor.xml: data/%.xml overlay/%-interrupts.xml dslite2svd.rb
2321
ruby dslite2svd.rb $(filter %.xml,$^) $@
@@ -39,4 +37,4 @@ svd/%.xml: overlay/%.patch svd/%-vendor.xml
3937
fi
4038

4139
crates/%/src/lib.rs: svd/%.xml
42-
cd crates/$* && svd2rust -i ../../$< && rm -rf src && form -i lib.rs -o src/ && rm lib.rs && cargo fmt
40+
cd crates/$* && $(SVD2RUST) -i ../../$< && rm -rf src && $(FORM) -i lib.rs -o src/ && rm lib.rs && $(CARGO_FMT)

0 commit comments

Comments
 (0)