WiiUPluginSystem/example_plugin/makefile.mk
Maschell 10c5eccd93 [Example Plugin] Updated the example plugin
- It's now linking with libc/libutils/libdynamiclibs
- moved the main.c into the a "src" folder

[Loader]- Added DCFlushRange and DCInvalidateRange
- Improved logging.

Finally we can load the plugin from the sdcard and call it's function!
2018-02-09 21:31:05 +01:00

19 lines
459 B
Makefile

###############################################################################
# Source files
# The source files to compile.
SRC := src/main.c
# Include directories
INC_DIRS := src
# Library directories
LIB_DIRS :=
# The names of libraries to use.
LIBS :=
# The output directory for compiled results.
BIN := bin
# The name of the output file to generate.
TARGET := $(BIN)/$(notdir $(CURDIR)).mod
# C compiler flags
CFLAGS :=