32 lines
1.0 KiB
Makefile
32 lines
1.0 KiB
Makefile
all: main/system.iso
|
|
|
|
%/system.elf: %/system.o startup.o
|
|
|
|
%/system.o: %.c
|
|
|
|
startup.o: startup.s
|
|
gcc startup.s -m32 -c -o startup.o -ffunction-sections
|
|
|
|
%/system.iso: %/system.elf
|
|
|
|
|
|
trace-%: %/system.elf %/system.iso
|
|
python bochs-experiment-runner.py -e $< -i $(shell dirname $<)/system.iso -1 \
|
|
-f /proj/i4ciao/tools/fail/fail-x86-tracing -- \
|
|
-V vgabios.bin - b BIOS-bochs-latest \
|
|
-Wf,--start-symbol=os_main \
|
|
-Wf,--save-symbol=os_main \
|
|
-Wf,--end-symbol=stop_trace \
|
|
-Wf,--state-file=$(shell dirname $<)/state \
|
|
-Wf,--trace-file=$(shell dirname $<)/trace.pb -Wf,--elf-file=$< -q
|
|
|
|
import-%: %/trace.pb
|
|
import-trace -t $< -i mem -e $(shell dirname $<)/system.elf -v $(shell dirname $<) -b mem
|
|
import-trace -t $< -i regs -e $(shell dirname $<)/system.elf -v $(shell dirname $<) -b regs --flags
|
|
import-trace -t $< -i regs -e $(shell dirname $<)/system.elf -v $(shell dirname $<) -b ip --no-gp --ip
|
|
prune-trace -v $(shell dirname $<) -b %%
|
|
|
|
|
|
# Do never remove implicitly generated stuff
|
|
.SECONDARY:
|