summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2019-05-23 13:04:41 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2019-05-23 13:04:41 +0100
commitbf2cf33fc633dd6f28d0d57e669cbd0b109a5f2d (patch)
treef7baf3d771c2388900a1106c994a38601b0a1717
parent75aeb733f292639f8332df11315ca8280e5631fd (diff)
Add yacc(1) bits.
-rw-r--r--.gitignore1
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac1
3 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index ad18d1de..d01a0166 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,3 +18,4 @@ Makefile.in
configure
tmux.1.*
*.dSYM
+cmd-parse.c
diff --git a/Makefile.am b/Makefile.am
index 9db08a02..ceaae6ad 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,7 +2,7 @@
# Obvious program stuff.
bin_PROGRAMS = tmux
-CLEANFILES = tmux.1.mdoc tmux.1.man
+CLEANFILES = tmux.1.mdoc tmux.1.man cmd-parse.c
# Distribution tarball options.
EXTRA_DIST = \
diff --git a/configure.ac b/configure.ac
index 1e7578ee..d09fec9d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,6 +28,7 @@ AC_PROG_CC_C99
AC_PROG_CPP
AC_PROG_EGREP
AC_PROG_INSTALL
+AC_PROG_YACC
PKG_PROG_PKG_CONFIG
AC_USE_SYSTEM_EXTENSIONS