diff options
author | Leah Neukirchen <leah@vuxu.org> | 2019-08-13 13:27:54 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2019-08-13 13:27:54 +0200 |
commit | 5cd03fa61b4839ecca1e9bce987d4b634ae55ac7 (patch) | |
tree | 1da3b9c785569f8e311f095d31146da50601d15e /Makefile | |
download | reap-5cd03fa61b4839ecca1e9bce987d4b634ae55ac7.tar.gz reap-5cd03fa61b4839ecca1e9bce987d4b634ae55ac7.tar.xz reap-5cd03fa61b4839ecca1e9bce987d4b634ae55ac7.zip |
initial commit of reap
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
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: |