diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-05-13 10:22:40 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-05-13 11:55:38 -0500 |
commit | e57fe29b63b883e7e214d1b619bc6953b70fa489 (patch) | |
tree | e189d7d74b3666a18f8285fbf3ec467a6458b33e /configure.ac | |
parent | Initial commit (diff) | |
download | locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.gz locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.bz2 locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.lz locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.xz locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.zst locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.zip |
Add autotools because why not
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-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..c70a7e0 --- /dev/null +++ b/configure.ac @@ -0,0 +1,11 @@ +AC_INIT([libocusts], [1.0.0]) +AC_CONFIG_SRCDIR([include/locusts.h]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIRS([m4]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_PROG_CC +AM_PROG_AR +LT_INIT + +AC_CONFIG_FILES([GNUmakefile ocusts.pc]) +AC_OUTPUT
\ No newline at end of file |