summaryrefslogtreecommitdiff
path: root/example/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'example/test/Makefile')
-rw-r--r--example/test/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/example/test/Makefile b/example/test/Makefile
new file mode 100644
index 0000000..5b29575
--- /dev/null
+++ b/example/test/Makefile
@@ -0,0 +1,13 @@
+PROG = main
+SRCS = main.c
+CFLAGS = -Wall \
+ -Werror \
+ -Wextra \
+ -Wpedantic \
+ -I../libfib \
+ -std=c17
+LDFLAGS = -L../libfib \
+ -lfib
+
+include ../tools/mcd.prog.mk
+