diff options
author | Leah Neukirchen <leah@vuxu.org> | 2024-01-10 22:21:36 +0100 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2024-01-10 22:21:36 +0100 |
commit | dd85c5ff60d33adc748cd570a9d77edfd0881115 (patch) | |
tree | 323c5fd57bdfe1ee47f963b1fa267655ef3bacef /Makefile | |
download | mlog-dd85c5ff60d33adc748cd570a9d77edfd0881115.tar.gz mlog-dd85c5ff60d33adc748cd570a9d77edfd0881115.tar.xz mlog-dd85c5ff60d33adc748cd570a9d77edfd0881115.zip |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
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: |