view configure.ac @ 5:a6ab6d9c0dac

readme: fix typos, str: remove outdated note our allocator is actually fairly smart now :)
author Paper <mrpapersonic@gmail.com>
date Mon, 25 Dec 2023 16:26:46 -0500
parents bd99b6549eb4
children 0c98b46eaf73
line wrap: on
line source

AC_INIT([libedl], [1.0])

AC_CONFIG_SRCDIR([src/edl.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIRS([m4])

AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])

# Check for a C compiler
AC_PROG_CC

# Need this because libtool is weird
AM_PROG_AR

LT_INIT

AC_CONFIG_FILES([Makefile])
AC_OUTPUT