This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: files left after distclean: How to clean those?


Bruce Korb <bkorb@pacbell.net> [2002-08-19 13:51:40 -0700]:
> Do you distribute example.8?

I could go either way.  Let's say no.

> If not, add it to the DISTCLEANFILES,

That worked!  Thanks!

So now my Makefile.am looks like this.  Anything flagrantly wrong?
Otherwise this is working for me.

Thanks
Bob

SUBDIRS = src

EXTRA_DIST = \
  README \
  depcomp \
  example.spec \
  example.spec.in

MAINTAINERCLEANFILES = \
  aclocal.m4 \
  configure \
  depcomp \
  example.spec

DISTCLEANFILES = example.8

info_TEXINFOS = example.texi

dist_man_MANS = example.8

example.8: src/example
	 help2man --output=example.8 ./src/example


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]