Mercurial > noffle
annotate docs/Makefile.am @ 44:bb6a1bf61279 noffle
[svn] Oops. Forgot three files in my last commit:
* Removed Makefile.
* Added docs/Makefile.am and docs/Makefile.in
author | uh1763 |
---|---|
date | Fri, 05 May 2000 22:50:13 +0100 |
parents | |
children | 651334f85995 |
rev | line source |
---|---|
44 | 1 # Process this file with automake to produce Makefile.in |
2 | |
3 man_MANS = $(PACKAGE).1 $(PACKAGE).conf.5 | |
4 | |
5 EXTRA_DIST = FAQ NOTES ${man_MANS} $(PACKAGE).lsm | |
6 | |
7 install-data-local: | |
8 $(INSTALL) -o 0 -g 0 -d $(DOCDIR) | |
9 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/FAQ $(DOCDIR) | |
10 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NOTES $(DOCDIR) | |
11 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/$(PACKAGE).lsm $(DOCDIR) | |
12 | |
13 uninstall-local: | |
14 rm -f $(DOCDIR)/FAQ | |
15 rm -f $(DOCDIR)/NOTES | |
16 rm -f $(DOCDIR)/$(PACKAGE).lsm | |
17 |