annotate docs/Makefile.am @ 62:53cfa011a08c noffle

[svn] Avoid compiler warning because of cast from const to non-const.
author enz
date Fri, 12 May 2000 18:28:07 +0100
parents bb6a1bf61279
children 651334f85995
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
1 # Process this file with automake to produce Makefile.in
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
2
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
3 man_MANS = $(PACKAGE).1 $(PACKAGE).conf.5
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
4
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
5 EXTRA_DIST = FAQ NOTES ${man_MANS} $(PACKAGE).lsm
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
6
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
7 install-data-local:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
8 $(INSTALL) -o 0 -g 0 -d $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
9 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/FAQ $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
10 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NOTES $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
11 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/$(PACKAGE).lsm $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
12
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
13 uninstall-local:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
14 rm -f $(DOCDIR)/FAQ
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
15 rm -f $(DOCDIR)/NOTES
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
16 rm -f $(DOCDIR)/$(PACKAGE).lsm
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
17