From 2eceba1e0f5e8af0fbf8fdf80c6c88970029af85 Mon Sep 17 00:00:00 2001 From: schodet Date: Sun, 6 Mar 2005 17:55:32 +0000 Subject: Mise à jour Makefile. Ajout de byte.h --- n/avr/utils/Makefile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'n/avr/utils/Makefile') 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) -- cgit v1.2.3