about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2024-01-10 22:21:36 +0100
committerLeah Neukirchen <leah@vuxu.org>2024-01-10 22:21:36 +0100
commitdd85c5ff60d33adc748cd570a9d77edfd0881115 (patch)
tree323c5fd57bdfe1ee47f963b1fa267655ef3bacef /Makefile
downloadmlog-dd85c5ff60d33adc748cd570a9d77edfd0881115.tar.gz
mlog-dd85c5ff60d33adc748cd570a9d77edfd0881115.tar.xz
mlog-dd85c5ff60d33adc748cd570a9d77edfd0881115.zip
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..93ef656
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=-O2 -Wall -Wno-unused-parameter -Wextra -Wwrite-strings
+
+ALL=mlog
+
+all: $(ALL)
+
+clean: FRC
+	rm -f $(ALL)
+
+FRC: