comparison configure.ac @ 2:d00bc412900e

*: fix up lots of stuff and make the thing actually usable
author Paper <mrpapersonic@gmail.com>
date Sun, 24 Dec 2023 20:01:30 -0500
parents
children bd99b6549eb4
comparison
equal deleted inserted replaced
1:db8b7e45ee55 2:d00bc412900e
1 AC_INIT([libedl], [1.0])
2
3 AC_CONFIG_SRCDIR([src/main.c])
4 AC_CONFIG_AUX_DIR([build-aux])
5 AC_CONFIG_MACRO_DIRS([m4])
6
7 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
8
9 # Check for a C compiler
10 AC_PROG_CC
11
12 # Need this because libtool is weird
13 AM_PROG_AR
14
15 LT_INIT
16
17 AC_CONFIG_FILES([Makefile])
18 AC_OUTPUT