diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-09-08 21:42:26 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-09-08 21:42:26 +0100 |
commit | 9a476c5f29d404128da070f2fe35a66bbe29ed9b (patch) | |
tree | 1a9131f2dc4ecdb104298182319a9de327b3e41e | |
parent | 5423bf6db89c14b49fd9059357faa94e19a73e2c (diff) | |
download | rtmux-9a476c5f29d404128da070f2fe35a66bbe29ed9b.tar.gz rtmux-9a476c5f29d404128da070f2fe35a66bbe29ed9b.tar.bz2 rtmux-9a476c5f29d404128da070f2fe35a66bbe29ed9b.zip |
Fix "make ctags", GitHub issue 1888.
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 94b1564b..ab302637 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,8 +6,9 @@ CLEANFILES = tmux.1.mdoc tmux.1.man cmd-parse.c # Distribution tarball options. EXTRA_DIST = \ - CHANGES README README.ja COPYING example_tmux.conf compat/*.[ch] \ + CHANGES README README.ja COPYING example_tmux.conf \ osdep-*.c mdoc2man.awk tmux.1 +dist_EXTRA_tmux_SOURCES = compat/*.[ch] # Preprocessor flags. AM_CPPFLAGS += @XOPEN_DEFINES@ -DTMUX_CONF="\"$(sysconfdir)/tmux.conf\"" |