Mercurial > noffle
annotate docs/Makefile.am @ 74:c7df2cc65cc1 noffle
[svn] Introduce UNUSED(x) macro
author | bears |
---|---|
date | Sat, 13 May 2000 16:36:35 +0100 |
parents | bb6a1bf61279 |
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 |