[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Error output
From: |
Russell |
Subject: |
Error output |
Date: |
Fri, 18 Oct 2002 23:10:18 +1000 |
Hi,
I'm using Make-3.79.1
The line:
avr-ld -o proj.o -Map proj.map analog.o
generates lots of errors when run manually on the
command line, but no errors are seen on the screen
when it is run in the makefile. How can i see these?
SUBDIRS= analog
.PHONY: $(SUBDIRS) clean proj
proj: $(SUBDIRS)
cd objs \
avr-ld -o proj.o -Map proj.map $(addsuffix .o,$(SUBDIRS)) \
avr-objcopy -O ihex -R .eeprom -g proj.o proj.hex
$(SUBDIRS):
$(MAKE) -C $@
clean:
rm objs/*.o