mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-05 18:35:08 +01:00
18 lines
437 B
Makefile
18 lines
437 B
Makefile
###############################################################################
|
|
# Source files
|
|
|
|
# The source files to compile.
|
|
SRC := main.c
|
|
# Include directories
|
|
INC_DIRS :=
|
|
# 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 :=
|