From 1eb707216263d27e16348f6c0c2ee75c6587c81b Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Thu, 27 Apr 2023 15:59:45 +0200 Subject: [PATCH] Makefile: remove AVR=0 flag Now that we don't rely on external tools anymore, this isn't necessary anymore. --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index a71bae0..2db981a 100644 --- a/Makefile +++ b/Makefile @@ -169,12 +169,10 @@ smoke-test: @md5sum ./build/test.bin tinygo build -size short -o ./build/test.hex -target=feather-nrf52840 ./examples/is31fl3731/main.go @md5sum ./build/test.hex -ifneq ($(AVR), 0) tinygo build -size short -o ./build/test.hex -target=arduino ./examples/ws2812 @md5sum ./build/test.hex tinygo build -size short -o ./build/test.hex -target=digispark ./examples/ws2812 @md5sum ./build/test.hex -endif tinygo build -size short -o ./build/test.hex -target=trinket-m0 ./examples/bme280/main.go @md5sum ./build/test.hex tinygo build -size short -o ./build/test.hex -target=circuitplay-express ./examples/microphone/main.go