summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-05-27 23:43:56 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-05-27 23:43:56 +0200
commit7b5533f518cad3cc7eadb3b39b2eb587ec012f2c (patch)
treec3b0c9d7d21f1e7921ae7f1564e69e22dcdb88c8 /Makefile
parent5719fbb793bfbf3eb70f85a3501648bbf46f109e (diff)
downloadmblaze-7b5533f518cad3cc7eadb3b39b2eb587ec012f2c.tar.gz
mblaze-7b5533f518cad3cc7eadb3b39b2eb587ec012f2c.tar.xz
mblaze-7b5533f518cad3cc7eadb3b39b2eb587ec012f2c.zip
rename Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile53
1 files changed, 0 insertions, 53 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 9713e26..0000000
--- a/Makefile
+++ /dev/null
@@ -1,53 +0,0 @@
-.error : This Makefile needs GNU make
-
-CFLAGS+=-g -O2 -Wall -Wno-switch -Wextra -fstack-protector-strong -D_FORTIFY_SOURCE=2
-LDLIBS=-lrt
-ifdef OPENBSD
-CFLAGS+=-I/usr/local/include -pthread
-LDLIBS=-L/usr/local/lib -liconv -pthread
-endif
-
-DESTDIR=
-PREFIX=/usr/local
-BINDIR=$(PREFIX)/bin
-MANDIR=$(PREFIX)/share/man
-
-ALL = maddr magrep mdate mdeliver mdirs mexport mflag mgenmid mhdr minc mlist mmime mpick mscan msed mseq mshow msort mthread
-SCRIPT = mcolor mcom mless mquote
-
-all: $(ALL)
-
-$(ALL) : % : %.o
-maddr magrep mdeliver mexport mflag mgenmid mhdr mpick mscan msed mshow \
-  msort mthread : blaze822.o mymemmem.o mytimegm.o
-maddr magrep mexport mflag mgenmid mhdr mlist mpick mscan msed mseq mshow msort \
-  mthread : seq.o slurp.o
-maddr magrep mhdr mpick mscan mshow : rfc2047.o
-magrep mshow : rfc2045.o
-mshow : filter.o safe_u8putstr.o rfc2231.o pipeto.o
-mscan : pipeto.o
-msort : mystrverscmp.o
-mmime : slurp.o
-
-README: man/mblaze.7
-	mandoc -Tutf8 $< | col -bx >$@
-
-clean: FRC
-	-rm -f $(ALL) *.o
-
-check: FRC all
-	PATH=$$(pwd):$$PATH prove -v
-
-install: FRC all
-	mkdir -p $(DESTDIR)$(BINDIR) \
-		$(DESTDIR)$(MANDIR)/man1 \
-		$(DESTDIR)$(MANDIR)/man7
-	install -m0755 $(ALL) $(SCRIPT) $(DESTDIR)$(BINDIR)
-	ln -sf mless $(DESTDIR)$(BINDIR)/mnext
-	ln -sf mless $(DESTDIR)$(BINDIR)/mprev
-	ln -sf mcom $(DESTDIR)$(BINDIR)/mrep
-	install -m0644 man/*.1 $(DESTDIR)$(MANDIR)/man1
-	install -m0644 man/*.5 $(DESTDIR)$(MANDIR)/man5
-	install -m0644 man/*.7 $(DESTDIR)$(MANDIR)/man7
-
-FRC: