diff options
author | Elwin <elwinhammer@gmail.com> | 2024-06-24 13:33:59 +0200 |
---|---|---|
committer | Elwin <elwinhammer@gmail.com> | 2024-06-24 13:33:59 +0200 |
commit | 5b73024f1620f9a92965ce89e5e7b369cb8a9b5a (patch) | |
tree | df6f0794d05edd1651713fbe874a057c2b320c9d /puzzle/neo | |
parent | 7830fb636853564560df5ba330b23791655e4161 (diff) |
cmake fix
Diffstat (limited to 'puzzle/neo')
-rw-r--r-- | puzzle/neo/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/puzzle/neo/makefile b/puzzle/neo/makefile index 26e9157..6b8341b 100644 --- a/puzzle/neo/makefile +++ b/puzzle/neo/makefile @@ -3,6 +3,6 @@ TARGET = $(BUILD_DIR)/main.elf include ../../lazy.mk export SERIAL_PORT ?= /dev/ttyACM0 -flash: upload-main; -upload-main: $(TARGET) +flash: upload; +upload: $(TARGET) |