diff --git a/Makefile b/Makefile index d3f4e81..552b87b 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,10 @@ endif default: fdimage.img +# Host utils +utils/%: src/utils/%.c + $(CC) -o $@ $< + # Boot sectors boot/%.bs: boot/%.asm $(NASM) $(NASM_ARGS) -DFLOPPY=$(FLOPPY) -o $@ $< diff --git a/utils/emul.c b/src/utils/emul.c similarity index 100% rename from utils/emul.c rename to src/utils/emul.c