2018-10-19 11:16:47 +00:00
|
|
|
|
|
|
|
all: linux avr
|
|
|
|
|
|
|
|
linux:
|
2018-10-28 19:06:26 +00:00
|
|
|
@echo make linux
|
2018-10-19 11:16:47 +00:00
|
|
|
@make -f linux.Makefile linux
|
2018-10-14 17:32:59 +00:00
|
|
|
|
2018-10-28 19:06:26 +00:00
|
|
|
avr: lib/libssd1306.a
|
|
|
|
@echo make avr
|
2018-10-19 11:16:47 +00:00
|
|
|
@make -f avr.Makefile avr
|
2018-10-14 17:32:59 +00:00
|
|
|
|
2018-10-28 19:06:26 +00:00
|
|
|
lib/libssd1306.a:
|
|
|
|
@cd deps/ssd1306/src/; make -f Makefile.avr
|
|
|
|
@mkdir -p lib
|
|
|
|
@cp deps/ssd1306/bld/libssd1306.a lib/libssd1306.a
|
2018-10-14 17:32:59 +00:00
|
|
|
|
2018-11-08 13:37:35 +00:00
|
|
|
flash: avr
|
2018-10-19 11:16:47 +00:00
|
|
|
@make -f avr.Makefile flash
|
2018-10-25 14:21:57 +00:00
|
|
|
|
2018-11-08 13:37:35 +00:00
|
|
|
run: linux
|
|
|
|
@make -f linux.Makefile run
|
|
|
|
|
|
|
|
|
2018-10-25 14:21:57 +00:00
|
|
|
clean:
|
|
|
|
@rm -r build
|
|
|
|
@echo clean all
|