summaryrefslogtreecommitdiff
path: root/n/avr/modules/utils/test/Makefile
diff options
context:
space:
mode:
authorschodet2005-07-05 18:43:16 +0000
committerschodet2005-07-05 18:43:16 +0000
commit793b2bec21d37c45e498dd38008566f891dde86e (patch)
tree4bf8cde672bb124508c859e7debf18c5242087f8 /n/avr/modules/utils/test/Makefile
parent1ebf6805ad1337248ee6901cf847c3552bbfefbe (diff)
Ajout de utils.
Diffstat (limited to 'n/avr/modules/utils/test/Makefile')
-rw-r--r--n/avr/modules/utils/test/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/n/avr/modules/utils/test/Makefile b/n/avr/modules/utils/test/Makefile
new file mode 100644
index 0000000..c7d685e
--- /dev/null
+++ b/n/avr/modules/utils/test/Makefile
@@ -0,0 +1,18 @@
+BASE = ../../..
+PROGS = test_utils test_byte
+test_utils_SOURCES = test_utils.c
+test_byte_SOURCES = test_byte.c
+DOC =
+EXTRACTDOC =
+MODULES = utils
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega128
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+DEFS =
+LIBS =
+
+include $(BASE)/make/Makefile.gen