dnl Process this file with autoconf to produce a configure script.
  AC_INIT(src/wajig.py)
  PACKAGE=wajig
  VERSION=0.1.1
  AC_PATH_PROG(PYTHON, python)
  AC_SUBST(PYTHON)
  AC_SUBST(PACKAGE)
  AC_SUBST(VERSION)
  AC_PROG_INSTALL
  AC_PROG_MAKE_SET
  AC_PROG_CC
  AC_OUTPUT(Makefile src/Makefile src/const.py wajig.sh)
 
 |