~toykeeper/flashlight-firmware/fsm

188.1.35 by Selene Scriven
Applied recent updates to FSM build scripts, and added some really simple Makefiles.
1
all:
2
	./build-all.sh
3
4
clean:
5
	rm -f *.hex *~ *.elf *.o
6
483.1.14 by Selene Scriven
added "make todo" to remind me about stuff I still need to finish
7
todo:
8
	@egrep 'TODO:|FIXME:' *.[ch]
9
483.1.69 by Selene Scriven
added model numbers to each build target, and to version check function
10
models:
483.1.141 by Selene Scriven
added attiny type to the MODELS file, rewrote how MODELS file gets generated
11
	@./models.py > MODELS
483.1.83 by Selene Scriven
documentation improvements:
12
	@cat MODELS
483.1.69 by Selene Scriven
added model numbers to each build target, and to version check function
13
483.1.14 by Selene Scriven
added "make todo" to remind me about stuff I still need to finish
14
.phony: clean todo