From e73d10d09e10f2002122ea8d2cd878951b7eda0e Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Sun, 23 May 2021 14:18:22 +0200 Subject: Move roms to separate directory --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a16b658..9d830b8 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ SRC_DIR := src BUILD_DIR := build SRC_MAIN := $(SRC_DIR)/main.c ROM := $(BUILD_DIR)/rom.c -ROM_SRC := $(SRC_DIR)/uxn/roms/dvd.rom +ROM_SRC := roms/dvd.rom ASM_FILES := $(wildcard $(SRC_DIR)/*.s) WATCH_SRC := $(shell find $(SRC_DIRS) -name *.c -or -name *.s -or -name *.h) INC_DIRS := $(shell find $(SRC_DIR) -type d) @@ -79,8 +79,7 @@ run: main # Remove build directory. clean: - rm $(ROM) - rm -r $(BUILD_DIR) + rm -rf $(BUILD_DIR) tools: make -C tools/bin2carr -- cgit v1.2.1