summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMax <mparisi@stevens.edu>2020-09-29 20:14:10 -0400
committerMax <mparisi@stevens.edu>2020-09-29 20:14:10 -0400
commit5e80e11773a76a052341f0e7223fac548a746660 (patch)
tree3f1a2c1f2b56dae093df43331e7fd6ec826d591e /Makefile
parent5ae53288e8a43010954bd5c894f3c4ea09c3708b (diff)
split MSL_C math functions, and reorganize source tree
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 8 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 4bade59..65b13d5 100644
--- a/Makefile
+++ b/Makefile
@@ -28,12 +28,14 @@ TARGET := pbr_pal
BUILD_DIR := build/$(TARGET)
-SRC_DIRS := src src/SDK/OS src/libstdc++ src/MetroTRK src/GameSpy \
- src/nw4r/ut src/nw4r/snd src/nw4r/ut/detail src/nw4r/snd/detail \
- src/nw4r/math src/nw4r/lyt src/nw4r/lyt/detail
-ASM_DIRS := asm asm/SDK/OS asm/libstdc++ asm/MetroTRK asm/GameSpy \
- asm/nw4r/ut asm/nw4r/snd asm/nw4r/ut/detail asm/nw4r/snd/detail \
- asm/nw4r/math asm/nw4r/lyt asm/nw4r/lyt/detail
+SRC_DIRS := src src/SDK/OS src/MSL_C/MSL_Common src/MSL_C/MSL_Common_Embedded \
+ src/MSL_C/MSL_Common_Embedded/Math src/MSL_C/PPC_EABI src/Runtime \
+ src/MetroTRK src/GameSpy src/nw4r/ut src/nw4r/snd src/nw4r/ut/detail \
+ src/nw4r/snd/detail src/nw4r/math src/nw4r/lyt src/nw4r/lyt/detail
+ASM_DIRS := asm asm/SDK/OS asm/MSL_C/MSL_Common asm/MSL_C/MSL_Common_Embedded \
+ asm/MSL_C/MSL_Common_Embedded/Math asm/MSL_C/PPC_EABI asm/Runtime \
+ asm/MetroTRK asm/GameSpy asm/nw4r/ut asm/nw4r/snd asm/nw4r/ut/detail \
+ asm/nw4r/snd/detail asm/nw4r/math asm/nw4r/lyt asm/nw4r/lyt/detail
# Inputs
S_FILES := $(wildcard asm/*.s)