Mercurial > noffle
comparison Makefile @ 38:8e972daaeab9 noffle
[svn] Applied patch from Jim Hague:
- Forget cached group info when group database closed.
- Added list of 'forbidden' newsgroup specs.
- Fixed problem with article numbering if the overview file empties.
- Changed %i to %d in sscanfs (%i interprets leading zeros as octal numbers)
- New groups now always start numbering at article 1.
- Record newsgroup posting status. Enforce it at posting time.
Added --modify
- Added group deletion.
- Added wildmat code taken from INN
| author | enz |
|---|---|
| date | Fri, 05 May 2000 08:23:15 +0100 |
| parents | cf838072290d |
| children |
comparison
equal
deleted
inserted
replaced
| 37:792eb10e936d | 38:8e972daaeab9 |
|---|---|
| 1 ############################################################################### | 1 ############################################################################### |
| 2 # | 2 # |
| 3 # Makefile for Noffle news server | 3 # Makefile for Noffle news server |
| 4 # | 4 # |
| 5 # $Id: Makefile 37 2000-04-30 14:22:12Z enz $ | 5 # $Id: Makefile 44 2000-05-05 07:23:15Z enz $ |
| 6 # | 6 # |
| 7 ############################################################################### | 7 ############################################################################### |
| 8 | 8 |
| 9 SPOOLDIR = /var/spool/noffle | 9 SPOOLDIR = /var/spool/noffle |
| 10 PREFIX = /usr/local | 10 PREFIX = /usr/local |
| 21 VERSION = 1.0pre5develop | 21 VERSION = 1.0pre5develop |
| 22 | 22 |
| 23 FILESH = client.h common.h config.h content.h control.h database.h \ | 23 FILESH = client.h common.h config.h content.h control.h database.h \ |
| 24 dynamicstring.h fetch.h fetchlist.h group.h itemlist.h lock.h log.h \ | 24 dynamicstring.h fetch.h fetchlist.h group.h itemlist.h lock.h log.h \ |
| 25 online.h outgoing.h over.h post.h protocol.h pseudo.h request.h \ | 25 online.h outgoing.h over.h post.h protocol.h pseudo.h request.h \ |
| 26 server.h util.h | 26 server.h util.h wildmat.h |
| 27 | 27 |
| 28 FILESC = fetch.c client.c config.c content.c control.c database.c \ | 28 FILESC = fetch.c client.c config.c content.c control.c database.c \ |
| 29 dynamicstring.c fetchlist.c group.c itemlist.c lock.c log.c noffle.c \ | 29 dynamicstring.c fetchlist.c group.c itemlist.c lock.c log.c noffle.c \ |
| 30 online.c outgoing.c over.c post.c protocol.c pseudo.c request.c \ | 30 online.c outgoing.c over.c post.c protocol.c pseudo.c request.c \ |
| 31 server.c util.c | 31 server.c util.c wildmat.c |
| 32 | 32 |
| 33 OBJS = $(patsubst %.c,%.o,$(FILESC)) | 33 OBJS = $(patsubst %.c,%.o,$(FILESC)) |
| 34 | 34 |
| 35 all: noffle | 35 all: noffle |
| 36 | 36 |
| 63 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/lock | 63 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/lock |
| 64 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/requested | 64 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/requested |
| 65 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/outgoing | 65 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/outgoing |
| 66 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/overview | 66 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/overview |
| 67 install -o 0 -g 0 -d $(RPM_BUILD_ROOT)$(DOCDIR) | 67 install -o 0 -g 0 -d $(RPM_BUILD_ROOT)$(DOCDIR) |
| 68 install -m 0644 -o 0 -g 0 README.txt $(RPM_BUILD_ROOT)$(DOCDIR) | 68 install -m 0644 -o 0 -g 0 README.html $(RPM_BUILD_ROOT)$(DOCDIR) |
| 69 install -m 0644 -o 0 -g 0 NOTES.txt $(RPM_BUILD_ROOT)$(DOCDIR) | 69 install -m 0644 -o 0 -g 0 NOTES.html $(RPM_BUILD_ROOT)$(DOCDIR) |
| 70 install -m 0644 -o 0 -g 0 INSTALL.txt $(RPM_BUILD_ROOT)$(DOCDIR) | 70 install -m 0644 -o 0 -g 0 INSTALL.html $(RPM_BUILD_ROOT)$(DOCDIR) |
| 71 install -m 0644 -o 0 -g 0 CHANGELOG.txt $(RPM_BUILD_ROOT)$(DOCDIR) | 71 install -m 0644 -o 0 -g 0 CHANGELOG.html $(RPM_BUILD_ROOT)$(DOCDIR) |
| 72 install -m 0644 -o 0 -g 0 FAQ.txt $(RPM_BUILD_ROOT)$(DOCDIR) | 72 install -m 0644 -o 0 -g 0 FAQ.html $(RPM_BUILD_ROOT)$(DOCDIR) |
| 73 install -m 0644 -o 0 -g 0 COPYING.txt $(RPM_BUILD_ROOT)$(DOCDIR) | 73 install -m 0644 -o 0 -g 0 COPYING.html $(RPM_BUILD_ROOT)$(DOCDIR) |
| 74 install -m 0644 -o 0 -g 0 noffle.conf.example \ | 74 install -m 0644 -o 0 -g 0 noffle.conf.example \ |
| 75 $(RPM_BUILD_ROOT)$(DOCDIR) | 75 $(RPM_BUILD_ROOT)$(DOCDIR) |
| 76 chown -R news.news $(RPM_BUILD_ROOT)$(SPOOLDIR) | 76 chown -R news.news $(RPM_BUILD_ROOT)$(SPOOLDIR) |
| 77 @echo | 77 @echo |
| 78 @echo Read INSTALL.txt for further instructions. | 78 @echo Read INSTALL.html for further instructions. |
| 79 | 79 |
| 80 tags: | 80 tags: |
| 81 ctags -e $(FILESC) $(FILESH) | 81 ctags -e $(FILESC) $(FILESH) |
| 82 | 82 |
| 83 -include depend | 83 -include depend |
