From 7a78b2dc0e0d051cfbcc9f9636e10a59cc7a7d67 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Thu, 22 Oct 2020 18:48:57 +0200 Subject: [PATCH] all: replace underscores with dashes in target names This is the convention, so use it everywhere. --- Makefile | 6 +++--- targets/{clue_alpha.json => clue-alpha.json} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename targets/{clue_alpha.json => clue-alpha.json} (100%) diff --git a/Makefile b/Makefile index ece22dd3..9488f5cc 100644 --- a/Makefile +++ b/Makefile @@ -240,8 +240,6 @@ smoketest: # test simulated boards on play.tinygo.org $(TINYGO) build -o test.wasm -tags=arduino examples/blinky1 @$(MD5SUM) test.wasm - $(TINYGO) build -o test.wasm -tags=hifive1-qemu examples/serial - @$(MD5SUM) test.wasm $(TINYGO) build -o test.wasm -tags=hifive1b examples/blinky1 @$(MD5SUM) test.wasm $(TINYGO) build -o test.wasm -tags=reelboard examples/blinky1 @@ -293,7 +291,7 @@ smoketest: @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=circuitplay-express examples/i2s @$(MD5SUM) test.hex - $(TINYGO) build -size short -o test.hex -target=clue_alpha examples/blinky1 + $(TINYGO) build -size short -o test.hex -target=clue-alpha examples/blinky1 @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.gba -target=gameboy-advance examples/gba-display @$(MD5SUM) test.gba @@ -370,6 +368,8 @@ ifneq ($(XTENSA), 0) endif $(TINYGO) build -size short -o test.hex -target=hifive1b examples/blinky1 @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=hifive1-qemu examples/serial + @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=maixbit examples/blinky1 @$(MD5SUM) test.hex $(TINYGO) build -o wasm.wasm -target=wasm examples/wasm/export diff --git a/targets/clue_alpha.json b/targets/clue-alpha.json similarity index 100% rename from targets/clue_alpha.json rename to targets/clue-alpha.json