wix-on-linux/configure.ac
Simon Tatham 7de9585efb Set up an autotools system.
Supersedes the hand-hacked Makefile I was previously working with.
2017-05-17 19:31:26 +01:00

17 lines
292 B
Text

# autoconf input for Wix Linux shim.
AC_INIT([wix-linux-shim], [NOVERSION], [anakin@pobox.com])
AC_CONFIG_SRCDIR([fake-lib.h])
AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE(foreign)
AC_PROG_CC
AC_PROG_LIBTOOL
AC_PROG_INSTALL
AC_PROG_LN_S
AC_LANG([C])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT