mirror of
https://github.com/Maschell/WUPSPluginPlayground.git
synced 2024-11-06 04:45:05 +01:00
73 lines
2.7 KiB
Makefile
73 lines
2.7 KiB
Makefile
|
# Compiling the projects with libutils logging code?
|
||
|
DO_LOGGING := 0
|
||
|
|
||
|
# Non WUT plugins need to wrap the malloc functions.
|
||
|
WRAP_MALLOC := 0
|
||
|
|
||
|
# Sets the "-D__WUT__" compiling flag
|
||
|
USE_WUT := 0
|
||
|
|
||
|
# 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 := 0
|
||
|
|
||
|
# Target filename
|
||
|
TARGET := $(notdir $(CURDIR)).mod
|
||
|
|
||
|
# Source directories
|
||
|
SOURCES := src
|
||
|
|
||
|
# Data directories
|
||
|
DATA :=
|
||
|
|
||
|
# Include directories
|
||
|
INCLUDES := src
|
||
|
|
||
|
#---------------------------------------------------------------------------------
|
||
|
# options for code generation and linking
|
||
|
#---------------------------------------------------------------------------------
|
||
|
# Extra C compiler flags
|
||
|
CFLAGS :=
|
||
|
# Extra C++ compiler flags
|
||
|
CXXFLAGS :=
|
||
|
# Extra linking flags for all linking steps
|
||
|
LD_FLAGS :=
|
||
|
# extra linking flags for linking the temporarily elf file (using ld)
|
||
|
LD_FLAGS_ELF :=
|
||
|
# extra linking flags for linking the final mod file (using gcc/g++)
|
||
|
LD_FLAGS_MOD :=
|
||
|
|
||
|
#---------------------------------------------------------------------------------
|
||
|
# list of directories containing libraries, this must be the top level containing
|
||
|
# include and lib
|
||
|
#---------------------------------------------------------------------------------
|
||
|
LIBDIRS := $(WUPSDIR)
|
||
|
|
||
|
#---------------------------------------------------------------------------------
|
||
|
# any extra libraries we wish to link with the project
|
||
|
#---------------------------------------------------------------------------------
|
||
|
LIBS :=
|
||
|
|
||
|
#---------------------------------------------------------------------------------
|
||
|
# 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 :=
|