diff options
author | horst3180 | 2015-08-20 13:33:16 +0200 |
---|---|---|
committer | horst3180 | 2015-08-20 13:33:16 +0200 |
commit | 59803702086f0616ef1ce65726497c38d48db761 (patch) | |
tree | 50bbe724a8f7eaaf1fe57b3889452d37e65b440c /configure.ac | |
parent | 0446c2e11ab6cadb17da7c09313eee226dcc40e1 (diff) | |
parent | 96e306f4f84309d2d2f8fbc1ad5b9b7e93f85abc (diff) | |
download | solarc-firefox-theme-59803702086f0616ef1ce65726497c38d48db761.tar.gz solarc-firefox-theme-59803702086f0616ef1ce65726497c38d48db761.tar.xz solarc-firefox-theme-59803702086f0616ef1ce65726497c38d48db761.zip |
Merge pull request #3 from ikeydoherty/autotools
Add autotools based build system
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..cd784df --- /dev/null +++ b/configure.ac @@ -0,0 +1,17 @@ +AC_INIT([arc-firefox-theme], [40.20150819], [https://github.com/horst3180/arc-firefox-theme/issues], [arc-firefox-theme], [https://github.com/horst3180/arc-firefox-theme]) +AM_INIT_AUTOMAKE([-Wno-portability no-dist-gzip dist-xz foreign subdir-objects tar-ustar]) +AC_PREFIX_DEFAULT(/usr/local) +AM_SILENT_RULES([yes]) + + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT + +AC_MSG_RESULT([ + arc-firefox-theme $VERSION + ======== + + prefix: ${prefix} + exec_prefix: ${exec_prefix} + datarootdir: ${datarootdir} +]) |