summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2022-01-06 16:54:48 +0100
committerLeah Neukirchen <leah@vuxu.org>2022-01-06 16:54:48 +0100
commit82682bc36771d7be568e06bb194e4e9384c8922f (patch)
treeb833c3fb07051039480f5c6d1f1348a5800556b7
parentbbfb3110de8846e2815e309b20604300532d235f (diff)
downloadrvnit-82682bc36771d7be568e06bb194e4e9384c8922f.tar.gz
rvnit-82682bc36771d7be568e06bb194e4e9384c8922f.tar.xz
rvnit-82682bc36771d7be568e06bb194e4e9384c8922f.zip
add Makefile
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ee55120
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings -pthread
+
+ALL=rvnit
+
+all: $(ALL)
+
+clean: FRC
+	rm -f $(ALL)
+
+FRC: