# Adjustable common makefile values for PSn00bSDK example programs. # You may need to modify these values to match with your toolchain setup. # GCC version GCC_VERSION = 7.4.0 # GCC base paths ifeq "$(OS)" "Windows_NT" # For Windows GCC_BASE = /c/mipsel-unknown-elf else # For Linux/BSDs GCC_BASE = /usr/local/mipsel-unknown-elf endif # Toolchain prefix PREFIX = mipsel-unknown-elf- # Include directories INCLUDE = -I../include # Finish paths LIBDIRS += -L$(GCC_BASE)/lib/gcc/mipsel-unknown-elf/$(GCC_VERSION) INCLUDE += -I$(GCC_BASE)/lib/gcc/mipsel-unknown-elf/$(GCC_VERSION)/include