Mercurial > noffle
annotate docs/Makefile.am @ 239:2b7ddb90d9b2 noffle
[svn] * src/over.c: Fix warning.
* src/fetchlist.h,src/fetchlist.c,src/noffle.c: Provide fetchmode for
groups on fetchlist.
* src/server.c: When fetching overviews online from groups on the fetchlist,
fetch them in the appropriate fetch mode for the group. E.g. if group
mode is FULL, fetch overviews and put all articles on articles required
list to be fetched on the next noffle --fetch.
* packages/redhat/noffle.spec: Incorporate changes from Carles Arjona.
author | bears |
---|---|
date | Thu, 14 Feb 2002 17:17:02 +0000 |
parents | e9d3378edec7 |
children | d6e02253fb76 |
rev | line source |
---|---|
44 | 1 # Process this file with automake to produce Makefile.in |
2 | |
3 man_MANS = $(PACKAGE).1 $(PACKAGE).conf.5 | |
4 | |
224
e9d3378edec7
[svn] * docs/Makefile.am: Add testing.txt to documents.
bears
parents:
99
diff
changeset
|
5 EXTRA_DIST = INTERNALS FAQ NOTES testing.txt ${man_MANS} $(PACKAGE).lsm |
44 | 6 |
7 install-data-local: | |
8 $(INSTALL) -o 0 -g 0 -d $(DOCDIR) | |
99
651334f85995
[svn] * docs/Makefile.am, docs/Makefile.in: Added INTERNALS to docs/Makefile.am, so
uh1763
parents:
44
diff
changeset
|
9 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INTERNALS $(DOCDIR) |
44 | 10 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/FAQ $(DOCDIR) |
11 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NOTES $(DOCDIR) | |
224
e9d3378edec7
[svn] * docs/Makefile.am: Add testing.txt to documents.
bears
parents:
99
diff
changeset
|
12 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/testing.txt $(DOCDIR) |
44 | 13 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/$(PACKAGE).lsm $(DOCDIR) |
14 | |
15 uninstall-local: | |
99
651334f85995
[svn] * docs/Makefile.am, docs/Makefile.in: Added INTERNALS to docs/Makefile.am, so
uh1763
parents:
44
diff
changeset
|
16 rm -f $(DOCDIR)/INTERNALS |
44 | 17 rm -f $(DOCDIR)/FAQ |
18 rm -f $(DOCDIR)/NOTES | |
224
e9d3378edec7
[svn] * docs/Makefile.am: Add testing.txt to documents.
bears
parents:
99
diff
changeset
|
19 rm -f $(DOCDIR)/testing.txt |
44 | 20 rm -f $(DOCDIR)/$(PACKAGE).lsm |
21 |