summaryrefslogtreecommitdiffhomepage
path: root/project/common.mk
diff options
context:
space:
mode:
Diffstat (limited to 'project/common.mk')
-rw-r--r--project/common.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/project/common.mk b/project/common.mk
new file mode 100644
index 0000000..c1491b3
--- /dev/null
+++ b/project/common.mk
@@ -0,0 +1,17 @@
+DRIVER_SRCS = \
+ src/driver/ntux_amain.c \
+ src/driver/ntux_driver_ctx.c \
+ src/skin/ntux_skin_default.c \
+
+INTERNAL_SRCS = \
+ src/internal/nolibc/ntux_compiler.c \
+ src/internal/ntux_memfn_impl.c \
+ src/internal/ntux_nolibc_impl.c \
+ src/internal/ntux_ntaio_impl.c \
+
+APP_SRCS = \
+ src/ntux.c
+
+COMMON_SRCS = \
+ $(DRIVER_SRCS) \
+ $(INTERNAL_SRCS) \