2010-08-19 16:59:16 +00:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ([2.59])
|
2010-08-23 03:53:06 +00:00
|
|
|
AC_INIT([QuakeForge], [git-master])
|
2010-08-19 16:59:16 +00:00
|
|
|
AC_CONFIG_SRCDIR([template.c])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
|
|
|
|
# Checks for programs.
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
# PKG_PROG_PKG_CONFIG
|
|
|
|
|
|
|
|
# Checks for libraries.
|
|
|
|
|
|
|
|
# Checks for header files.
|
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
|
|
|
|
# Checks for library functions.
|
|
|
|
|
2010-08-23 03:53:06 +00:00
|
|
|
TOPSRC=`readlink -f ${srcdir}/..`
|
|
|
|
AC_SUBST(TOPSRC)
|
2010-08-19 16:59:16 +00:00
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile man/Makefile quakeforge.dox])
|
|
|
|
AC_OUTPUT
|