From 98694a3cab902c3ef3d1bdab941980ed6c94d67d Mon Sep 17 00:00:00 2001 From: schodet Date: Tue, 2 Aug 2005 21:14:07 +0000 Subject: Ajout du support des fichiers asm. --- n/avr/make/Makefile.host | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'n/avr/make/Makefile.host') diff --git a/n/avr/make/Makefile.host b/n/avr/make/Makefile.host index e46c2b0..3fd343f 100644 --- a/n/avr/make/Makefile.host +++ b/n/avr/make/Makefile.host @@ -20,13 +20,13 @@ host: exe HOST_PROGS += $(PROGS) HOST_EXES = $(HOST_PROGS:%=%.host) -HOST_SOURCES = $(filter-out %.avr.c,$(SOURCES)) +HOST_SOURCES = $(filter-out %.avr.c %.avr.S,$(SOURCES)) HOST_OBJECTS = $(HOST_SOURCES:%.c=%.host.o) exe: $(HOST_EXES) define AVR_PROG_template -$(1).host: $$(patsubst %.c,%.host.o,$$(filter-out %.avr.c,$$($(1)_SOURCES))) +$(1).host: $$(patsubst %.c,%.host.o,$$(filter-out %.avr.c %.avr.S,$$($(1)_SOURCES))) endef $(foreach prog,$(HOST_PROGS),$(eval $(call AVR_PROG_template,$(prog)))) -- cgit v1.2.3