summaryrefslogtreecommitdiff
path: root/n/avr/modules/host/test/Makefile
diff options
context:
space:
mode:
authorschodet2005-10-08 11:10:24 +0000
committerschodet2005-10-08 11:10:24 +0000
commitfce0e09f5373a93d4071349fe26a4cec42a9916d (patch)
tree838374c78c9ea067459bd68c419ff07bf62bc5fd /n/avr/modules/host/test/Makefile
parent45f5194c8d72ec43d1094b9ca992d2fd00e2f298 (diff)
Ajout des variables host.
Ajout du programme de test.
Diffstat (limited to 'n/avr/modules/host/test/Makefile')
-rw-r--r--n/avr/modules/host/test/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/n/avr/modules/host/test/Makefile b/n/avr/modules/host/test/Makefile
new file mode 100644
index 0000000..6c3ec51
--- /dev/null
+++ b/n/avr/modules/host/test/Makefile
@@ -0,0 +1,17 @@
+BASE = ../../..
+HOST_PROGS = test_host
+test_host_SOURCES = test_host.c
+DOC =
+EXTRACTDOC =
+MODULES = host
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = none
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+DEFS =
+LIBS =
+
+include $(BASE)/make/Makefile.gen