billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=af5531f8dda1084175fdfaee2031e4662e601c7d
commit af5531f8dda1084175fdfaee2031e4662e601c7d Author: Alex-P. Natsios <drak...@2f30.org> Date: Sun Dec 15 21:44:01 2013 +0100 autotools: add clean target for man/Makefile.in Summary: man/Makefile.in is an autotools generated file that we do not need nor want into the repo. Without this rule it is not removed properly when you issue the command: "make maintainer-clean" Reviewers: billiob Differential Revision: https://phab.enlightenment.org/D383 --- man/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/man/Makefile.am b/man/Makefile.am index 923851a..1d4c153 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,2 +1,4 @@ +MAINTAINERCLEANFILES = Makefile.in + man1_MANS = terminology.1 EXTRA_DIST = terminology.1 --