aboutsummaryrefslogtreecommitdiff
path: root/examples/sdk-common.mk
diff options
context:
space:
mode:
authorJohn Wilbert M. Villamor <lameguy64@gmail.com>2020-09-19 20:43:05 +0800
committerJohn Wilbert M. Villamor <lameguy64@gmail.com>2020-09-19 20:43:05 +0800
commit9f4891f95070c66ea9f1aba99d72724d4ab24e5a (patch)
tree723e3ef2118a3d1a9e6dafa811ed1b8b1bc9196e /examples/sdk-common.mk
parent6762c39551ded059450d17d8bb0cb80642c8aaab (diff)
downloadpsn00bsdk-9f4891f95070c66ea9f1aba99d72724d4ab24e5a.tar.gz
Revised makefiles, added strtok(), command line arguments, SetHeapSize(), moved ISR and callback system to psxetc, moved debug font to psxgpu, fixed CD-ROM library crashing on PSIO, fixed interrupt callback setup to fix crashing on ResetGraph()
Diffstat (limited to 'examples/sdk-common.mk')
-rw-r--r--examples/sdk-common.mk34
1 files changed, 0 insertions, 34 deletions
diff --git a/examples/sdk-common.mk b/examples/sdk-common.mk
deleted file mode 100644
index 0503b57..0000000
--- a/examples/sdk-common.mk
+++ /dev/null
@@ -1,34 +0,0 @@
-# Adjustable common makefile values for PSn00bSDK example programs.
-# You may need to modify these values to match with your toolchain setup.
-
-# Toolchain prefix
-PREFIX = mipsel-unknown-elf-
-
-# Include directories
-INCLUDE = -I../../../libpsn00b/include
-
-# Library directories, last entry must point toolchain libraries
-LIBDIRS = -L../../../libpsn00b
-
-ifndef GCC_VERSION
-
-GCC_VERSION = 7.4.0
-
-endif
-
-ifndef GCC_BASE
-
-ifeq "$(OS)" "Windows_NT" # For Windows
-
-GCC_BASE = /c/mipsel-unknown-elf
-
-else # For Linux/BSDs
-
-GCC_BASE = /usr/local/mipsel-unknown-elf
-
-endif
-
-endif
-
-LIBDIRS += -L$(GCC_BASE)/lib/gcc/mipsel-unknown-elf/$(GCC_VERSION)
-INCLUDE += -I$(GCC_BASE)/lib/gcc/mipsel-unknown-elf/$(GCC_VERSION)/include