diff options
| author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-06-17 00:25:20 +0900 | 
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-06-17 00:25:20 +0900 | 
| commit | 2e5693e7cf1e3c408916a1af6d16dc6363b835fe (patch) | |
| tree | 0cbef7981dbe699d2f46bd1b1e0825de1f42c9f0 | |
| parent | 365015c2c7947456b249b1c13ea1a1f6b40369e6 (diff) | |
Reformat and clean configure.ac
| -rw-r--r-- | configure.ac | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/configure.ac b/configure.ac index 3eaec37..50df1af 100644 --- a/configure.ac +++ b/configure.ac @@ -1,16 +1,16 @@  AC_INIT([calculer], [1.0.0]) +AC_CONFIG_HEADERS([config.h])  AM_INIT_AUTOMAKE([-Wall -Werror, foreign]) -: ${CFLAGS=""} +  AC_PROG_CC -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([ -	Makefile -	src/Makefile -])  if [ ! -d "./linenoise/" ]  then -	git clone --depth=1 'https://github.com/antirez/linenoise.git' +  git clone --depth=1 'https://github.com/antirez/linenoise.git'  fi +AC_CONFIG_FILES([ +  Makefile +  src/Makefile +])  AC_OUTPUT | 
