mirror of
https://github.com/Maschell/hid_to_vpad.git
synced 2024-11-09 17:05:05 +01:00
03c0c8a55e
- Add missing functions patches to allows pro controller emulation - Add a custom config item type which can be used to map controller during gameplay! - Usage of a real (pro) controller is currently broken - Mapping of the a keyboard/mouse is not tested (probably broken)
65 lines
2.6 KiB
Makefile
65 lines
2.6 KiB
Makefile
# Compiling the projects with libutils logging code?
|
|
DO_LOGGING := 1
|
|
|
|
# Links against the wut implementation of newlib, this is useful for using any function
|
|
# from the C standard library
|
|
WUT_ENABLE_NEWLIB := 0
|
|
|
|
# Links against the wut implementation of stdcpp, this is useful for using any function
|
|
# from the C++ standard library. This will enable WUT_ENABLE_NEWLIB if you have not already done so.
|
|
WUT_ENABLE_CPP := 0
|
|
|
|
# By default newlib will allocate 90% of the default heap for use with sbrk & malloc,
|
|
# if this is unacceptable to you then you should use this as it replaces the newlib
|
|
# malloc functions which ones which redirect to the CafeOS default heap functions
|
|
# such as MEMAllocFromDefaultHeap.
|
|
WUT_DEFAULT_MALLOC := 1
|
|
|
|
# Target filename
|
|
TARGET := hidtovpad.mod
|
|
|
|
# Source directories
|
|
SOURCES := src
|
|
|
|
# Data directories
|
|
DATA :=
|
|
|
|
# Include directories
|
|
INCLUDES := src
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# options for code generation and linking
|
|
#---------------------------------------------------------------------------------
|
|
# Extra C AND C++ compiler flags
|
|
COMMON_CFLAGS :=
|
|
# Extra C compiler flags
|
|
CFLAGS :=
|
|
# Extra C++ compiler flags
|
|
CXXFLAGS :=
|
|
# Extra linking flags for all linking steps
|
|
LDFLAGS :=
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# list of directories containing libraries, this must be the top level containing
|
|
# include and lib
|
|
#---------------------------------------------------------------------------------
|
|
LIBDIRS := $(WUPSDIR) $(WUT_ROOT)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# any extra libraries we wish to link with the project
|
|
#---------------------------------------------------------------------------------
|
|
LIBS := -lwups -lcontrollerpatcherwut -lutilswut -lcoreinit -lnsysnet -lnsyshid -lvpadbase -lvpad -lpadscore
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Will be added to the final lib paths
|
|
# example:
|
|
# -L$C:/library1/lib
|
|
#---------------------------------------------------------------------------------
|
|
EXTERNAL_LIBPATHS :=
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Will be added to the final include paths
|
|
# -IC:/library1/include
|
|
#---------------------------------------------------------------------------------
|
|
EXTERNAL_INCLUDE := -I$(WUT_ROOT)/include/libutilswut
|