mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2025-02-04 11:46:21 +01:00
10c5eccd93
- 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!
19 lines
459 B
Makefile
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 :=
|