mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 21:54:10 +03:00
16 lines
269 B
Plaintext
16 lines
269 B
Plaintext
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
AC_INIT(nominatim, 0.1)
|
||
|
|
||
|
dnl Generate configuration header file
|
||
|
AC_CONFIG_HEADER(config.h)
|
||
|
|
||
|
dnl Find C compiler
|
||
|
AC_PROG_CC
|
||
|
|
||
|
dnl Find C++ compiler
|
||
|
AC_PROG_CXX
|
||
|
|
||
|
dnl Generate Makefile
|
||
|
AC_OUTPUT(Makefile)
|
||
|
|