Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/coolgirl-multicart/coolgirl-multirom-builder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-26 01:21:12 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-26 01:21:12 +0300
commitcbbddf64791c23b817ad906fd3e26da243594333 (patch)
treeaf5f9ecab7be0b524f81c00b811858a7e215e6cb /Makefile
parentf87c42b55b913177953dff79f412d1fbe3af426b (diff)
Dimming feature
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 11b4363..819b4d3 100644
--- a/Makefile
+++ b/Makefile
@@ -44,16 +44,16 @@ all: $(UNIF) $(NES20) $(BIN)
build: $(UNIF)
$(MENU_ROM): $(SOURCES) games.asm header footer symbols sprites
- $(NESASM) $(SOURCES) --output=$(MENU_ROM) $(NESASM_OPTS)
+ $(NESASM) menu.asm --output=$(MENU_ROM) $(NESASM_OPTS)
menu: $(MENU_ROM)
games.asm $(OFFSETS): $(CONFIGS_DIR)/$(GAMES)
$(COMBINER) prepare --games $(CONFIGS_DIR)/$(GAMES) --asm games.asm --maxromsize $(SIZE) --maxchrsize $(MAXCHRSIZE) --offsets $(OFFSETS) $(REPORT_OPTION) $(SORT_OPTION) --language $(LANGUAGE) $(BADS_OPTION)
-$(UNIF): $(SOURCES) header footer symbols sprites
- $(COMBINER) build --games $(CONFIGS_DIR)/$(GAMES) --asm games.asm --maxromsize $(SIZE) --maxchrsize $(MAXCHRSIZE) $(REPORT_OPTION) $(SORT_OPTION) --language $(LANGUAGE) --nesasm $(NESASM) --unif $(UNIF) $(BADS_OPTION)
-# $(COMBINER) combine --loader $(MENU_ROM) --offsets $(OFFSETS) --unif $(UNIF)
+$(UNIF): $(SOURCES) header footer symbols sprites $(MENU_ROM) $(OFFSETS)
+# $(COMBINER) build --games $(CONFIGS_DIR)/$(GAMES) --asm games.asm --maxromsize $(SIZE) --maxchrsize $(MAXCHRSIZE) $(REPORT_OPTION) $(SORT_OPTION) --language $(LANGUAGE) --nesasm $(NESASM) --unif $(UNIF) $(BADS_OPTION)
+ $(COMBINER) combine --loader $(MENU_ROM) --offsets $(OFFSETS) --unif $(UNIF)
unif: $(UNIF)