From 59f072093409f045d5565dd89caee1a497026576 Mon Sep 17 00:00:00 2001 From: Ain <41307858+nero@users.noreply.github.com> Date: Sat, 28 Sep 2019 19:07:40 +0000 Subject: [PATCH] Rename scripts to utils --- Makefile | 2 +- {scripts => utils}/fix-rom.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {scripts => utils}/fix-rom.sh (100%) diff --git a/Makefile b/Makefile index c392dc5..9326c0c 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ rconfig.sys: config.txt cp $< $@ debug.rom: debug/*.asm lib/*.asm - $(NASM) $(NASM_ARGS) -o $@ -I debug debug/main.asm && scripts/fix-rom.sh $@ + $(NASM) $(NASM_ARGS) -o $@ -I debug debug/main.asm && utils/fix-rom.sh $@ boot/%.bs: boot/%.asm $(NASM) $(NASM_ARGS) -DFLOPPY=$(FLOPPY) -o $@ $< diff --git a/scripts/fix-rom.sh b/utils/fix-rom.sh similarity index 100% rename from scripts/fix-rom.sh rename to utils/fix-rom.sh