autogen.sh 539 B

123456789101112131415161718192021222324
  1. #! /bin/sh
  2. # Run this to generate all the initial makefiles, etc.
  3. test -f Makefile.am || cd "`dirname \"$0\"`"
  4. #autopoint -f
  5. #cp po/* po_messages
  6. #cp po/* po_document
  7. #rm -rf po
  8. #gettextize -f --no-changelog --po-dir=po_messages
  9. #gettextize -f --no-changelog --po-dir=po_document
  10. # Create `aclocal.m4'.
  11. mkdir -p m4
  12. aclocal -I m4
  13. # Create `Makefile.in' from `Makefile.am', and symlink `install-sh',
  14. # `missing' and `mkinstalldirs' from /usr/share/automake.
  15. automake --add-missing -c
  16. # Create `configure' from `configure.in'.
  17. autoconf