diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-02-03 17:54:02 +0100 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-02-03 17:54:02 +0100 |
commit | fc4f1875fe57c39bf122cfb43a30893fef58c157 (patch) | |
tree | 7a84c5bcacec39b2bb7d6c8250a23da780009ef6 /configure.ac | |
parent | 18a47f8b4bf99366beea3b9486566ebe26f7de5d (diff) |
reapeat now built using the GNU Autotools
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..5461c4a --- /dev/null +++ b/configure.ac @@ -0,0 +1,11 @@ +AC_INIT([repeat], [1.2.0]) +AM_INIT_AUTOMAKE([-Wall -Werror, foreign]) +: ${CFLAGS=""} +AC_PROG_CC +AM_SILENT_RULES([yes]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_FILES([ + Makefile + rpt.1 +]) +AC_OUTPUT |