diff options
author | Louie S <louie@example.com> | 2022-11-06 16:28:17 -0800 |
---|---|---|
committer | Louie S <louie@example.com> | 2022-11-06 16:28:17 -0800 |
commit | 2c29b6a5145a4c44cbef03197db64cd2d7decd15 (patch) | |
tree | db4129c7efad3b79ee1b21c5ed4ef634044de5eb /configure.ac | |
parent | 77c6ef13a0599fdb9966a3a7dc967e204b77c7d5 (diff) |
Basic functionality for using autotools over basic Makefile
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..ca82896 --- /dev/null +++ b/configure.ac @@ -0,0 +1,9 @@ +AC_INIT([terminal-media-launcher], [0.1], [lshprung@example.com]) + +AM_INIT_AUTOMAKE + +AC_PROG_CC + +AC_CONFIG_FILES([Makefile src/Makefile]) + +AC_OUTPUT |