17 lines
166 B
Makefile
17 lines
166 B
Makefile
|
|
all: linux avr
|
|
|
|
linux:
|
|
@make -f linux.Makefile linux
|
|
|
|
avr:
|
|
@make -f avr.Makefile avr
|
|
|
|
|
|
|
|
flash:
|
|
@make -f avr.Makefile flash
|
|
|
|
clean:
|
|
@rm -r build
|
|
@echo clean all
|