summaryrefslogtreecommitdiff
path: root/example/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'example/Makefile')
-rw-r--r--example/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/example/Makefile b/example/Makefile
new file mode 100644
index 0000000..6284df3
--- /dev/null
+++ b/example/Makefile
@@ -0,0 +1,18 @@
+#
+# Copyright (c) 2026 Jacob McDonnell
+#
+# SPDX-License-Identifier: BSD-2-Clause
+#
+PROG = main
+SRCS = main.c
+CFLAGS = -Wall \
+ -Werror \
+ -Wextra \
+ -Wpedantic \
+ -I../include
+ -std=c17
+LDFLAGS = -L../src \
+ -lMatfile
+
+include ../mk/mk/mcd.prog.mk
+