Error out from make install if ARDUINO env var is unset
This commit is contained in:
parent
8b7377dff3
commit
39a457b101
7
Makefile
7
Makefile
@ -90,6 +90,13 @@ clean:
|
|||||||
rm -fr $(BUILD_LIBS_DIR)/*/*.o
|
rm -fr $(BUILD_LIBS_DIR)/*/*.o
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
@if [ ! -c "$(ARDUINO)" ]; then \
|
||||||
|
echo -e "\n\nEnvironment variable ARDUINO is \"$(ARDUINO)\" and that is invalid."\
|
||||||
|
"\nDid you do \"export ARDUINO=/dev/ttyACM0\" before running make install?"\
|
||||||
|
"\nAlso make sure that ARDUINO env var points to a valid tty device\n\n"; \
|
||||||
|
exit 1;\
|
||||||
|
fi
|
||||||
|
|
||||||
$(AVRDUDE) $(AVRDUDEARGS) -U flash:w:$(TARGET)
|
$(AVRDUDE) $(AVRDUDEARGS) -U flash:w:$(TARGET)
|
||||||
|
|
||||||
format:
|
format:
|
||||||
|
Loading…
Reference in New Issue
Block a user