about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-02-13 22:30:31 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2016-02-13 22:30:31 +0100
commit23fdbc8400fc01e977753bc357ec9f4679a60290 (patch)
tree984e4f2cf775156ac368b152a163c4ad61754906 /Makefile
parentd7852457e1d9eafb4b0a6e93c3e26070420c45a1 (diff)
downloadarr-23fdbc8400fc01e977753bc357ec9f4679a60290.tar.gz
arr-23fdbc8400fc01e977753bc357ec9f4679a60290.tar.xz
arr-23fdbc8400fc01e977753bc357ec9f4679a60290.zip
replace C prototype with Ruby script
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: