summaryrefslogtreecommitdiff
path: root/n/avr/utils/Makefile
diff options
context:
space:
mode:
authorschodet2005-03-06 17:55:32 +0000
committerschodet2005-03-06 17:55:32 +0000
commit2eceba1e0f5e8af0fbf8fdf80c6c88970029af85 (patch)
tree6312a505138be1521a76bf6362daff1b19231c6e /n/avr/utils/Makefile
parent4578af27dd2919a5c3315f570a4424016f1e9c11 (diff)
Mise à jour Makefile.
Ajout de byte.h
Diffstat (limited to 'n/avr/utils/Makefile')
-rw-r--r--n/avr/utils/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/n/avr/utils/Makefile b/n/avr/utils/Makefile
index eff599f..798bd2a 100644
--- a/n/avr/utils/Makefile
+++ b/n/avr/utils/Makefile
@@ -1,8 +1,10 @@
-PROGS = test_utils
-SOURCES = test_utils.c
+PROGS = test_utils test_byte
+test_utils_OBJECTS = test_utils.o
+test_bytes_OBJECTS = test_bytes.o
DOC = utils.html
-EXTRACTDOC = utils.h avrconfig.h
+EXTRACTDOC = utils.h byte.h avrconfig.h
MODULES =
+CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
MCU_TARGET = atmega128
# -O2 : speed
@@ -10,6 +12,10 @@ MCU_TARGET = atmega128
OPTIMIZE = -O2
DEFS =
-LIBS =
+LDLIBS =
include Makefile.avr
+
+test_utils.elf: $(test_utils_OBJECTS)
+
+test_bytes.elf: $(test_bytes_OBJECTS)