?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #!/bin/sh
  2.  
  3. test -e ./.autotools_aux || mkdir .autotools_aux
  4.  
  5. libtoolize -cq
  6. aclocal -I m4 --install           # Generate aclocal
  7. autoconf                          # Generate configure script
  8. autoheader                        # Generate config.h
  9. automake --add-missing --copy     # Generate Makefile.in and other scripts
  10.