NanoPayload

Makefile

66:838dee70e9cf
2015-06-23 Paul Boddie Changed the style of the linker script, originally to attempt to provide separate sections for interrupt handlers and for the main program, but the script is currently equivalent to the previous version. stage2-non-pic
     1 .PHONY: all clean distclean     2      3 all:     4 	make -C stage1     5 	make -C stage2     6      7 clean:     8 	make -C stage1 clean     9 	make -C stage2 clean    10     11 distclean:    12 	make -C stage1 distclean    13 	make -C stage2 distclean