mmreg 0.1.0

Safe, concurrent 32-bit memory-mapped IO register access for Rust. Library and CLI for embedded and PC platforms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

CROSS_TARGETS := $(shell cat targets.txt | grep -v '^#' | grep -v '^$$')


.PHONY: all $(CROSS_TARGETS) clean


all: $(CROSS_TARGETS)


$(CROSS_TARGETS):
	cross build --release --target $@


clean:
	cargo clean