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