Added makefile for aunit
This commit is contained in:
20
tests/Makefile
Normal file
20
tests/Makefile
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
tests:
|
||||||
|
set -e; \
|
||||||
|
for i in *-tests/Makefile; do \
|
||||||
|
echo '==== Making:' $$(dirname $$i); \
|
||||||
|
$(MAKE) -C $$(dirname $$i) -j; \
|
||||||
|
done
|
||||||
|
|
||||||
|
runtests:
|
||||||
|
set -e; \
|
||||||
|
for i in *-tests/Makefile; do \
|
||||||
|
echo '==== Running:' $$(dirname $$i); \
|
||||||
|
$$(dirname $$i)/$$(dirname $$i).out; \
|
||||||
|
done
|
||||||
|
|
||||||
|
clean:
|
||||||
|
set -e; \
|
||||||
|
for i in *-tests/Makefile; do \
|
||||||
|
echo '==== Cleaning:' $$(dirname $$i); \
|
||||||
|
$(MAKE) -C $$(dirname $$i) clean; \
|
||||||
|
done
|
||||||
6
tests/local-tests/Makfile
Normal file
6
tests/local-tests/Makfile
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# See https://github.com/bxparks/EpoxyDuino for documentation about this
|
||||||
|
# Makefile to compile and run Arduino programs natively on Linux or MacOS.
|
||||||
|
|
||||||
|
APP_NAME := local-tests
|
||||||
|
ARDUINO_LIBS := AUnit AceCommon AceTime
|
||||||
|
include ../../../EpoxyDuino/EpoxyDuino.mk
|
||||||
Reference in New Issue
Block a user