diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-09-22 18:16:38 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-09-22 18:16:38 -0700 |
commit | 2944f70ee33de24b023ad1edb04246e4b71eef17 (patch) | |
tree | f9841815814e8bc75dbd22290542a7533f520aff /configure.ac |
*: initial commit
wye is an input-oriented tee variant
The name is derived from the plumbing name for a
directional tee, or "Y" intersection.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..8cdfc3e --- /dev/null +++ b/configure.ac @@ -0,0 +1,16 @@ +AC_INIT([wye], [1.0], [vcaputo@pengaru.com]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_PROG_CC +AM_PROG_CC_C_O +AM_PROG_AR +AC_PROG_RANLIB +AM_SILENT_RULES([yes]) + +CFLAGS="$CFLAGS -Wall" + +AC_CONFIG_FILES([ + Makefile + src/Makefile +]) + +AC_OUTPUT |