about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index db9df32..0000000
--- a/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-ALL=arr
-
-CFLAGS=-g -O2 -Wall -Wextra -Wwrite-strings
-
-DESTDIR=
-PREFIX=/usr/local
-BINDIR=$(PREFIX)/bin
-MANDIR=$(PREFIX)/share/man
-
-all: $(ALL)
-
-clean: FRC
-	rm -f $(ALL)
-
-install: FRC all
-	mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1
-	install -m0755 $(ALL) $(DESTDIR)$(BINDIR)
-
-FRC: