Rahix / avr-device

Register access crate for AVR microcontrollers
Apache License 2.0
176 stars 67 forks source link

Makefile improvements #36

Closed couchand closed 4 years ago

couchand commented 4 years ago

Adds a check target to run cargo check --all-features, which I've found useful to verify I'm not totally breaking things.

Also adds all and clean to the .PHONY list.

couchand commented 4 years ago

Added rm src/generic.rs to the clean target. Probably not necessary generally since it will get clobbered, but as I'm hacking around on svd2rust I want to be absolutely sure it's getting the new version, and it seems like the right thing to do anyway.

Rahix commented 4 years ago

Thank you very much!