aboutsummaryrefslogtreecommitdiff
path: root/examples/examples-setup.mk
diff options
context:
space:
mode:
authorJohn Wilbert M. Villamor <lameguy64@gmail.com>2021-02-18 13:31:17 +0800
committerJohn Wilbert M. Villamor <lameguy64@gmail.com>2021-02-18 13:31:17 +0800
commit63419d9cc07c56234d0f61a80f32105b192aec8e (patch)
tree827cf4d134cf3b4618d0167cc912f3efd47c3aac /examples/examples-setup.mk
parent1625072293c40ba3cb819f8f48aeb4b64e93b133 (diff)
downloadpsn00bsdk-63419d9cc07c56234d0f61a80f32105b192aec8e.tar.gz
Lots of makefile corrections, improved build and toolchain instructions, added elf2cpe converter, fixed typo in plasma_tbl.h of n00bdemo example
Diffstat (limited to 'examples/examples-setup.mk')
-rw-r--r--examples/examples-setup.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/examples-setup.mk b/examples/examples-setup.mk
index 0692d89..1fadd84 100644
--- a/examples/examples-setup.mk
+++ b/examples/examples-setup.mk
@@ -5,7 +5,7 @@
# This is only for the PSn00bSDK example programs, not recommended
# for use with user projects
-PREFIX = mipsel-unknown-elf-
+PREFIX = mipsel-unknown-elf
ifndef GCC_VERSION
@@ -56,9 +56,9 @@ endif # PSN00BSDK_TC
endif # GCC_BASE
-CC = $(GCC_BIN)$(PREFIX)gcc
-CXX = $(GCC_BIN)$(PREFIX)g++
-AS = $(GCC_BIN)$(PREFIX)as
-AR = $(GCC_BIN)$(PREFIX)ar
-LD = $(GCC_BIN)$(PREFIX)ld
-RANLIB = $(GCC_BIN)$(PREFIX)ranlib \ No newline at end of file
+CC = $(GCC_BIN)$(PREFIX)-gcc
+CXX = $(GCC_BIN)$(PREFIX)-g++
+AS = $(GCC_BIN)$(PREFIX)-as
+AR = $(GCC_BIN)$(PREFIX)-ar
+LD = $(GCC_BIN)$(PREFIX)-ld
+RANLIB = $(GCC_BIN)$(PREFIX)-ranlib \ No newline at end of file