about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2023-10-21 17:18:26 +0200
committerLeah Neukirchen <leah@vuxu.org>2023-10-21 17:18:26 +0200
commit8fa6c2456035d9febdc240a8cbdaa7b2d3964367 (patch)
tree164c60337dfd69928408dd0702ea5dc8cf46aa78 /Makefile
downloadnitro-8fa6c2456035d9febdc240a8cbdaa7b2d3964367.tar.gz
nitro-8fa6c2456035d9febdc240a8cbdaa7b2d3964367.tar.xz
nitro-8fa6c2456035d9febdc240a8cbdaa7b2d3964367.zip
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c693459
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings
+LDLIBS=-luv
+
+ALL=nitro
+
+all: $(ALL)
+
+clean: FRC
+	rm -f $(ALL)
+
+FRC: