summaryrefslogtreecommitdiff
path: root/digital/avr/modules/math/random/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'digital/avr/modules/math/random/test/Makefile')
-rw-r--r--digital/avr/modules/math/random/test/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/digital/avr/modules/math/random/test/Makefile b/digital/avr/modules/math/random/test/Makefile
new file mode 100644
index 00000000..0bc3c0e5
--- /dev/null
+++ b/digital/avr/modules/math/random/test/Makefile
@@ -0,0 +1,12 @@
+BASE = ../../../..
+PROGS = test_random
+test_random_SOURCES = test_random.c
+MODULES = uart proto math/random
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega8
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -Os
+
+include $(BASE)/make/Makefile.gen