NanoPayload

Makefile

86:f2ef4ea010d5
2015-12-06 Paul Boddie Reverted to the simpler ci20-os (CI20 bare-metal project) handling of interrupts, enabling interrupts and handling them successfully in a very basic fashion. Discarded the separate kernel stack for now. 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