aboutsummaryrefslogtreecommitdiffhomepage
path: root/man
diff options
context:
space:
mode:
authorGravatar Keegan McAllister <mcallister.keegan@gmail.com>2012-03-17 05:36:42 -0400
committerGravatar Keegan McAllister <mcallister.keegan@gmail.com>2012-03-17 05:36:42 -0400
commit139bcbf9aef5423d9f34acd5f129ead7cd6de989 (patch)
tree199d300e465d4d2db22145396c2430a5c553e579 /man
parenta151ea15c2942ca527ea20d649b32ee517b40b2e (diff)
configure.ac: Add --enable-{client,server,examples}
These default respectively to yes, yes, no.
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am10
1 files changed, 9 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index ca7bff6..53c8640 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1 +1,9 @@
-dist_man_MANS = mosh.1 mosh-client.1 mosh-server.1
+dist_man_MANS =
+
+if BUILD_CLIENT
+ dist_man_MANS += mosh.1 mosh-client.1
+endif
+
+if BUILD_SERVER
+ dist_man_MANS += mosh-server.1
+endif