forked from RetiredSDK/scaleform_sdk
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakeconfig_example
More file actions
56 lines (48 loc) · 1.34 KB
/
Makeconfig_example
File metadata and controls
56 lines (48 loc) · 1.34 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
# Makeconfig GFx sample
#
EPATH := $(PATH)
# Linux
ifeq ($(P1),local)
PCFLAGS += -march=pentiumpro
endif
# PS3
ifeq ($(P1),PS3)
# change the following line
export CELL_SDK = /cygdrive/c/path/to/cellsdk
export PATH = $(CELL_SDK)/host-win32/bin:$(CELL_SDK)/host-win32/ppu/bin:$(CELL_SDK)/host-win32/spu/bin:$(CELL_SDK)/host-win32/sn/bin:$(CELL_SDK)/host-win32/Cg/bin:$(EPATH)
endif
# PSP
ifeq ($(P1),psp)
# change the following line
export PSP_GCC_BASE = /cygdrive/c/path/to/psp
export SCE_PSP_SDK_HOME = $(PSP_GCC_BASE)/devkit
export PSPDEVKIT = $(SCE_PSP_SDK_HOME)
export PATH = $(SCE_PSP_SDK_HOME)/bin:$(EPATH)
endif
# Wii
ifeq ($(P1),wii)
# change the following 3 lines
WII_SDKDIR := /cygdrive/c/path/to/RVL_SDK
WII_NDEVDIR := /cygdrive/c/path/to/NDEV
WII_CWDIR := /cygdrive/c/path/to/CodeWarrior
endif
# Android
ifeq ($(P1),Android)
# change the following 3 lines
export JAVA_HOME := /cygdrive/c/path/to/JDK
ANDROID_SDK := /cygdrive/c/path/to/SDK
ANDROID_NDK := /cygdrive/c/path/to/NDK
export PATH := $(EPATH):$(JAVA_HOME)/bin:$(ANDROID_SDK)/tools:$(ANDROID_SDK)/platform-tools
AUTODEPLOY := 0
endif
# CE4100
ifeq ($(P1),CE4100)
# change the following line
export PDKROOT := /path/to/PDK
export PATH := $(EPATH):$(PDKROOT)/build_i686/staging_dir/bin
endif
# 3DS
ifeq ($(P),3DS)
# change the following line
CTR_SDKDIR := /cygdrive/c/path/to/CTR_SDKDIR
endif