Merge branch 'main' of github-aetias-hax:AetiasHax/ph into main

This commit is contained in:
Aetias
2024-04-12 15:30:32 +02:00
2 changed files with 7 additions and 3 deletions
+2 -1
View File
@@ -136,4 +136,5 @@ be inserted instead of `asm.inc`.
When contributing non-matching functions to this project, please build in both modes and fix any build errors you may get.
Delete the `.o` file between building in each mode so that the `Makefile` runs the compiler both times.
> [!NOTE] The inline assembler does not function the same as the standalone assembler. [See differences here.](inline_assembler.md#differences-from-standalone-assembler)
> [!NOTE]
> The inline assembler does not function the same as the standalone assembler. [See differences here.](docs/inline_assembler.md#differences-from-standalone-assembler)
+5 -2
View File
@@ -12,8 +12,11 @@ ifeq ($(OS),Windows_NT)
WINE :=
else
WINE := wine
PYTHON ?= python3.11
endif
PYTHON ?= python
ROOT := $(shell pwd)
BUILD_DIR := build
TARGET_DIR := $(BUILD_DIR)/$(REGION_NAME)
@@ -110,7 +113,7 @@ clean:
.PHONY: lcf
lcf: setup $(TOOLS_DIR)/lcf.py
python $(TOOLS_DIR)/lcf.py
$(PYTHON) $(TOOLS_DIR)/lcf.py
$(ASM_OBJS): $(TARGET_DIR)/%.o: %
mkdir -p $(dir $@)
@@ -135,4 +138,4 @@ $(OV_LZS): %.lz: %.bin
gen_externs: $(ASM_INCS)
$(ASM_INCS): %.inc: %.s
python $(TOOLS_DIR)/gen_externs.py $<
$(PYTHON) $(TOOLS_DIR)/gen_externs.py $<