-
Avi Kivity authored
Add a Makefile and a main function around which the loader will be built.
Avi Kivity authoredAdd a Makefile and a main function around which the loader will be built.
Makefile 114 B
all: loader.bin
loader.bin: loader.elf
objcopy -O elf32-x86-64 $^ $@
loader.elf: loader.o
$(CXX) -o $@ $^