File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
1
DEVICES := tm4c123x tm4c129x
2
2
SVD2RUST ?= svd2rust
3
+ FORM ?= form
4
+ CARGO_FMT ?= cargo fmt
3
5
4
6
.SECONDARY :
5
7
@@ -13,11 +15,7 @@ purge:
13
15
touch -t 198001010000 $(patsubst % ,crates/% /src/lib.rs,$(DEVICES ) )
14
16
15
17
.PHONY : rebuild
16
- rebuild : touch all
17
-
18
- .PHONY : touch
19
- touch :
20
- touch ./targetdb/devices/* .xml
18
+ rebuild : purge all
21
19
22
20
svd/% -vendor.xml : data/% .xml overlay/% -interrupts.xml dslite2svd.rb
23
21
ruby dslite2svd.rb $(filter % .xml,$^ ) $@
@@ -39,4 +37,4 @@ svd/%.xml: overlay/%.patch svd/%-vendor.xml
39
37
fi
40
38
41
39
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 )
You can’t perform that action at this time.
0 commit comments