-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.mk.template
More file actions
65 lines (45 loc) · 1.7 KB
/
config.mk.template
File metadata and controls
65 lines (45 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# If your setup is generic, you will likely only need
# to change the immediately below variables to match your setup.
# However, if you have a special setup, adjust the rest of this
# file as needed.
#
# Path to Bussun
BUSSUN := ./
# Path to Petari (up-to-date with multiplayer)
PETARI := ./
# Regions available are USA (RMGE), JPN(RMGJ), KOR(RMGK), PAL(RMGP)
REGION := USA
#
# Everything below this point probably does not need to be adjusted,
# but feel free to adjust as needed.
#
# Path to the external symbol map
SYMBOL_MAP := $(BUSSUN)/symbols/$(REGION).txt
# Prefix for all MW tools
MW := $(BUSSUN)/deps/CodeWarrior/
# Paths to each MW tool
CC := $(MW)/mwcceppc.exe
CXX := $(MW)/mwcceppc.exe
#AS := $(MW)/mwasmeppc.exe
# Path to Kamek linker
KAMEK := $(BUSSUN)/deps/Kamek/Kamek.exe
# Path to each library we will include from Petari
PATH_TO_GAME := $(PETARI)/include
PATH_TO_RFL := $(PETARI)/libs/RVLFaceLib/include
PATH_TO_RVL := $(PETARI)/libs/RVL_SDK/include
PATH_TO_TRK := $(PETARI)/libs/MetroTRK/include
PATH_TO_RUNTIME := $(PETARI)/libs/Runtime/include
PATH_TO_MSL_C := $(PETARI)/libs/MSL_C/include
PATH_TO_MSL_CPP := $(PETARI)/libs/MSL_C++/include
PATH_TO_JSYS := $(PETARI)/libs/JSystem/include
PATH_TO_NW4R := $(PETARI)/libs/nw4r/include
# Path to Bussun files (kamek header files, etc.)
BUSSUN_INCLUDE := $(BUSSUN)/include/
# Development settings
# If set to `true` (case-sensitive), files will be regenerated
# if any headers they include are modified. (default value is `false`)
#COMPLETE_PREREQUISITES := true
# If set to `true`, system includes (such as the headers from Petari)
# will be included in the preqreuisites for each file. (default `false`)
# SYSTEM_INCLUDE_PREREQUISITE := true