summaryrefslogtreecommitdiffstats
path: root/prepare
blob: c96921c5bb14a62d20cdde3195e92644b73d50ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh --

if aclocal -I m4 && autoheader && (cd m4 && make -f Makefile.am.in ) \
  && automake && autoconf && ./configure $@ && make keymap_defs.h
then
  echo
  echo "The mutt source code was successfully prepared."
  echo "Type make && make install to build and install mutt."
  echo
else
  echo
  echo "Some part of the preparation process failed."
  echo "Please refer to doc/devel-notes.txt for details."
  echo
  exit 1
fi