]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
search: implement index_sync to fixup indexer
[public-inbox.git] / Makefile.PL
index 245bb8875e4b3ea75cf29f89449eb86e3e15f9a9..f302b7c0791a37cc014cd5d028a3cd5dd42fc2ae 100644 (file)
@@ -9,7 +9,8 @@ WriteMakefile(
        AUTHOR => 'Eric Wong <normalperson@yhbt.net>',
        ABSTRACT => 'public-inbox server infrastructure',
        EXE_FILES => [qw/public-inbox-mda public-inbox.cgi
-                       public-inbox-learn/],
+                       public-inbox-learn public-inbox-init
+                       public-inbox-index/],
        PREREQ_PM => {
                # note: we use ssoma(1) and spamc(1), NOT the Perl modules
                # We also depend on git through ssoma.
@@ -33,20 +34,7 @@ WriteMakefile(
 
 sub MY::postamble {
   <<'EOF';
-RSYNC_DEST = public-inbox.org:/srv/public-inbox/
-docs = README COPYING INSTALL $(shell git ls-files Documentation/ '*.txt')
-gz_docs = $(addsuffix .gz, $(docs))
-%.gz: %
-       gzip -9 --rsyncable < $< > $@+
-       touch -r $< $@+
-       mv $@+ $@
-
-gz-docs: $(gz_docs)
-rsync-docs:
-       git set-file-times $(docs)
-       $(MAKE) gz-docs
-       rsync --chmod=Fugo=r -av $(gz_docs) $(docs) $(RSYNC_DEST)
-
+-include Documentation/include.mk
 N = $(shell echo $$(( $$(nproc 2>/dev/null || echo 2) + 1)))
 check:: pure_all
        prove -lv -j$(N)