Skip to content

Commit

Permalink
Fix Makefile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Pseurae committed Jan 7, 2025
1 parent 95754f1 commit fb5c415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ASFLAGS := -mthumb -I assembly -I include
LD = $(PREFIX)ld
LDFLAGS = -i rom.ld -T linker.ld

ARMIPS := ./armips
ARMIPS := armips
ARMIPSFLAGS := -strequ INPUT_FILE $(INPUT_DECAPPED) -strequ OUTPUT_FILE $(OUTPUT)

ELFEDIT := tools/elfedit/elfedit$(EXE)
Expand Down Expand Up @@ -65,7 +65,7 @@ all: $(OUTPUT)
@$(ARMIPS) $(ARMIPSFLAGS) main.asm -sym2 output.map
@echo "$(ARMIPS) <flags> main.asm -sym2 output.map"

$(OUTPUT): $(INPUT_DECAPPED) build/linked_processed.o
$(OUTPUT): build/linked_processed.o

format:
@find . -not -path "./tools/*" -name *.c -o -not -path "./tools/*" -name *.h | xargs clang-format -i
Expand Down

0 comments on commit fb5c415

Please sign in to comment.