From 9f830d0ca384b09e222cf6747cb20598eb26ca18 Mon Sep 17 00:00:00 2001 From: hugova Date: Fri, 1 Aug 2025 18:23:44 +0200 Subject: [PATCH] make .map file during compilation. --- host/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/Makefile b/host/Makefile index 56962ee..4e5329c 100644 --- a/host/Makefile +++ b/host/Makefile @@ -20,7 +20,7 @@ SRCS := $(shell find $(SRC_DIR) -name '*.s' -or -name '*.inc') CL := cl65 -CLFLAGS := -u __EXEHDR__ -t c64 -C c64-asm.cfg -l $(BUILD_DIR)/$(HOST_NAME).lst -Ln $(BUILD_DIR)/$(HOST_NAME).lbl +CLFLAGS := -u __EXEHDR__ -t c64 -C c64-asm.cfg -l $(BUILD_DIR)/$(HOST_NAME).lst -Ln $(BUILD_DIR)/$(HOST_NAME).lbl -m $(BUILD_DIR)/$(HOST_NAME).m $(HOST_PRG): $(SRCS) userprog.bin mkdir -p $(BUILD_DIR)