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
_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make