mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
b5375449e9
Rename TOPDIR to TOPSRC, can't get around requiring it and it's more descriptive this way anyway. Also, revert the use of the m4_esyscmd() macro in configure. It's kinda cool, but I'll come up with a better way to do it.
26 lines
607 B
Text
26 lines
607 B
Text
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.59])
|
|
AC_INIT([QuakeForge], [git-master])
|
|
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.
|
|
|
|
TOPSRC=`readlink -f ${srcdir}/..`
|
|
AC_SUBST(TOPSRC)
|
|
|
|
AC_CONFIG_FILES([Makefile man/Makefile quakeforge.dox])
|
|
AC_OUTPUT
|