diff options
author | Vasil Zlatanov <v@skozl.com> | 2017-03-02 15:00:12 +0000 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2017-03-02 15:00:12 +0000 |
commit | 660172378f4ee083635fa4771c5409bc95533eab (patch) | |
tree | 9d2a40d6729e2abe1de92d4072d7db0193c15059 /Makefile | |
parent | e044ed346e5185685ca581874cb2e60288d99837 (diff) | |
download | e2-lifelarm-660172378f4ee083635fa4771c5409bc95533eab.tar.gz e2-lifelarm-660172378f4ee083635fa4771c5409bc95533eab.tar.bz2 e2-lifelarm-660172378f4ee083635fa4771c5409bc95533eab.zip |
move source into src to aid compilation
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ all: - arduino --board adafruit:avr:feather32u4 --pref build.path=./build --verify ./main.ino + arduino --board adafruit:avr:feather32u4 --pref build.path=./build --verify ./src/src.ino clean: rm -rf ./build upload: - arduino --board adafruit:avr:feather32u4 --port /dev/ttyACM0 --upload ./main.ino + arduino --board adafruit:avr:feather32u4 --port /dev/ttyACM0 --upload ./src/src.ino |