diff options
author | Simon Tatham <anakin@pobox.com> | 2017-05-17 19:30:24 +0100 |
---|---|---|
committer | Simon Tatham <anakin@pobox.com> | 2017-05-17 19:31:26 +0100 |
commit | 7de9585efbbd148df26cd180900db69e11c36061 (patch) | |
tree | 71633e9aeaa43a7a43a7078cedf16cda267bb0dc /configure.ac | |
parent | e8d91ad3692c3e8941f86d5d2fe51eb572f20095 (diff) | |
download | wix-on-linux-7de9585efbbd148df26cd180900db69e11c36061.tar.gz wix-on-linux-7de9585efbbd148df26cd180900db69e11c36061.tar.bz2 wix-on-linux-7de9585efbbd148df26cd180900db69e11c36061.zip |
Set up an autotools system.
Supersedes the hand-hacked Makefile I was previously working with.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..a5986be --- /dev/null +++ b/configure.ac | |||
@@ -0,0 +1,17 @@ | |||
1 | # autoconf input for Wix Linux shim. | ||
2 | |||
3 | AC_INIT([wix-linux-shim], [NOVERSION], [anakin@pobox.com]) | ||
4 | AC_CONFIG_SRCDIR([fake-lib.h]) | ||
5 | AC_CONFIG_MACRO_DIRS([m4]) | ||
6 | |||
7 | AM_INIT_AUTOMAKE(foreign) | ||
8 | |||
9 | AC_PROG_CC | ||
10 | AC_PROG_LIBTOOL | ||
11 | AC_PROG_INSTALL | ||
12 | AC_PROG_LN_S | ||
13 | |||
14 | AC_LANG([C]) | ||
15 | |||
16 | AC_CONFIG_FILES([Makefile]) | ||
17 | AC_OUTPUT | ||