From aca3695e84d2b8044f64e5bdec40ced5fef4a481 Mon Sep 17 00:00:00 2001 From: Sauraen Date: Sat, 6 Sep 2025 14:22:23 -0700 Subject: [PATCH] Didn't look hard enough at the PR before approving --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 6e5f596..06f8712 100644 --- a/Makefile +++ b/Makefile @@ -34,21 +34,21 @@ ifeq ($(PARENT_OUTPUT_DIR),.) endif # Find the N64 toolchain, for creating object files. -ifneq (, $(shell which mips64-elf-as) +ifneq (, $(shell which mips64-elf-as)) AS := mips64-elf-as -else ifneq (, $(shell which mips-n64-as) +else ifneq (, $(shell which mips-n64-as)) AS := mips-n64-as -else ifneq (, $(shell which mips64-as) +else ifneq (, $(shell which mips64-as)) AS := mips64-as -else ifneq (, $(shell which mips-linux-gnu-as) +else ifneq (, $(shell which mips-linux-gnu-as)) AS := mips-linux-gnu-as -else ifneq (, $(shell which mips64-linux-gnu-as) +else ifneq (, $(shell which mips64-linux-gnu-as)) AS := mips64-linux-gnu-as -else ifneq (, $(shell which mips-as) +else ifneq (, $(shell which mips-as)) AS := mips-as -else ifneq (, $(shell which mips64-linux-gnuabi64-as) +else ifneq (, $(shell which mips64-linux-gnuabi64-as)) AS := mips64-linux-gnuabi64-as -else ifneq (, $(shell which mips64-ultra-elf-as) +else ifneq (, $(shell which mips64-ultra-elf-as)) AS := mips64-ultra-elf-as else $(warning Could not find N64 assembler, not building object files)