mirror of
https://github.com/git/git.git
synced 2024-11-20 19:23:59 +01:00
15 lines
354 B
Plaintext
15 lines
354 B
Plaintext
|
# -*- Autoconf -*-
|
||
|
# Process this file with autoconf to produce a configure script.
|
||
|
|
||
|
AC_PREREQ(2.59)
|
||
|
AC_INIT([git], [1.4.1], [git@vger.kernel.org])
|
||
|
|
||
|
AC_CONFIG_SRCDIR([git.c])
|
||
|
|
||
|
config_file=config.mak.autogen
|
||
|
config_in=config.mak.in
|
||
|
|
||
|
# Output files
|
||
|
AC_CONFIG_FILES(["${config_file}":"${config_in}"])
|
||
|
AC_OUTPUT
|