aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2017-05-17 19:30:24 +0100
committerSimon Tatham <anakin@pobox.com>2017-05-17 19:31:26 +0100
commit7de9585efbbd148df26cd180900db69e11c36061 (patch)
tree71633e9aeaa43a7a43a7078cedf16cda267bb0dc /configure.ac
parente8d91ad3692c3e8941f86d5d2fe51eb572f20095 (diff)
downloadwix-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.ac17
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
3AC_INIT([wix-linux-shim], [NOVERSION], [anakin@pobox.com])
4AC_CONFIG_SRCDIR([fake-lib.h])
5AC_CONFIG_MACRO_DIRS([m4])
6
7AM_INIT_AUTOMAKE(foreign)
8
9AC_PROG_CC
10AC_PROG_LIBTOOL
11AC_PROG_INSTALL
12AC_PROG_LN_S
13
14AC_LANG([C])
15
16AC_CONFIG_FILES([Makefile])
17AC_OUTPUT