# # Type 'make' with this 'makefile' file to build the SPANK OS kernel # It will execute the following commands as needed, based on files' # most-recent-update times. # all: os Runtime.o: Runtime.s asm Runtime.s Switch.o: Switch.s asm Switch.s System.s: System.h System.c comp System -unsafe System.o: System.s asm System.s List.s: System.h List.h List.c comp List -unsafe List.o: List.s asm List.s BitMap.s: System.h BitMap.h BitMap.c comp BitMap -unsafe BitMap.o: BitMap.s asm BitMap.s Kernel.s: System.h List.h BitMap.h Kernel.h Kernel.c comp Kernel -unsafe Kernel.o: Kernel.s asm Kernel.s Main.s: System.h List.h BitMap.h Kernel.h Main.h Main.c comp Main -unsafe Main.o: Main.s asm Main.s os: Runtime.o Switch.o System.o List.o BitMap.o Kernel.o Main.o lddd Runtime.o Switch.o System.o List.o BitMap.o Kernel.o Main.o -o os