-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
53 lines (45 loc) · 1.03 KB
/
Makefile
File metadata and controls
53 lines (45 loc) · 1.03 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
###################################
ifndef Ps4Sdk
ifdef ps4sdk
Ps4Sdk := $(ps4sdk)
endif
ifdef PS4SDK
Ps4Sdk := $(PS4SDK)
endif
ifndef Ps4Sdk
$(error Neither PS4SDK, Ps4Sdk nor ps4sdk set)
endif
endif
###################################
target := ps4_stub_lib
OutPath := lib
###################################
include $(Ps4Sdk)/make/ps4sdk.mk
###################################
$(eval $(call generateModule, \
libScePad, \
scePadClose \
scePadDeviceOpen \
scePadDisableVibration \
scePadEnableUsbConnection \
scePadGetControllerInformation \
scePadGetDataInternal \
scePadGetDeviceInfo \
scePadInit \
scePadMbusInit \
scePadOpen \
scePadRead \
scePadReadState \
scePadResetLightBar \
scePadResetOrientation \
scePadSetAngularVelocityDeadbandState \
scePadSetAutoPowerOffCount \
scePadSetConnection \
scePadSetLightBar \
scePadSetLightBarBaseBrightness \
scePadSetLightBarBlinking \
scePadSetMotionSensorState \
scePadSetTiltCorrectionState \
scePadSetVibration \
))
###################################