about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2019-08-13 13:27:54 +0200
committerLeah Neukirchen <leah@vuxu.org>2019-08-13 13:27:54 +0200
commit5cd03fa61b4839ecca1e9bce987d4b634ae55ac7 (patch)
tree1da3b9c785569f8e311f095d31146da50601d15e /Makefile
downloadreap-5cd03fa61b4839ecca1e9bce987d4b634ae55ac7.tar.gz
reap-5cd03fa61b4839ecca1e9bce987d4b634ae55ac7.tar.xz
reap-5cd03fa61b4839ecca1e9bce987d4b634ae55ac7.zip
initial commit of reap
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..fb1f502
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+ALL=reap
+
+CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings
+
+DESTDIR=
+PREFIX=/usr/local
+BINDIR=$(PREFIX)/bin
+MANDIR=$(PREFIX)/share/man
+
+all: $(ALL)
+
+clean: FRC
+	rm -f $(ALL)
+
+FRC: