This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
eilduscd/configure.ac

16 lines
226 B
Plaintext

AC_INIT(eilduscd, 0.0.4)
AM_INIT_AUTOMAKE(eilduscd, 0.0.4)
AM_CONFIG_HEADER(config.h)
# Check for compiler and stuff
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
CFLAGS="$CFLAGS -Wall -Werror"
AC_OUTPUT(
Makefile
src/Makefile
)