diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-10-20 17:57:04 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-10-20 18:00:52 -0700 |
commit | 14bfab3bb34f5ab75f2ac6c4acb3b67201e89a69 (patch) | |
tree | 55919167f7c1c44e11887c6f4e9407ca922b7997 /Makefile.am | |
parent | man: note that -n is the default mode. (diff) | |
download | xcman-14bfab3bb34f5ab75f2ac6c4acb3b67201e89a69.tar.gz xcman-14bfab3bb34f5ab75f2ac6c4acb3b67201e89a69.tar.bz2 xcman-14bfab3bb34f5ab75f2ac6c4acb3b67201e89a69.tar.xz |
config: move man pages into their own directory
Use services provided by XORG_MANPAGE_SECTIONS.
Use standard Makefile for man pages.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index 38a0c9f..25d5adb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,20 +1,19 @@ +SUBDIRS = man + bin_PROGRAMS = xcompmgr -man_MANS = xcompmgr.1 AM_CFLAGS = $(CWARNFLAGS) $(XCOMPMGR_CFLAGS) xcompmgr_LDADD = $(XCOMPMGR_LIBS) -lm -EXTRA_DIST = \ - autogen.sh \ - ChangeLog \ - ${man_MANS} +MAINTAINERCLEANFILES = ChangeLog INSTALL -MAINTAINERCLEANFILES=ChangeLog +.PHONY: ChangeLog INSTALL -.PHONY: ChangeLog +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL |