Mercurial > noffle
comparison src/Makefile.in @ 255:52f467c7213b noffle
[svn] * docs/noffle.1,src/Makefile.am,src/Makefile.in,src/content.c,
src/content.h,src/database.c,src/database.h,src/expire.c,
src/expire.h,src/noffle.c: Split out expire code from database.c,
change to remove articles in place (rather than rebuild article
database) and add separate command to rebuild article database
from articles listed in overviews. This may help if the article
database gets corrupted.
author | bears |
---|---|
date | Wed, 26 Jun 2002 14:15:44 +0100 |
parents | b4f1731a6470 |
children | b510f6a65a79 |
comparison
equal
deleted
inserted
replaced
254:4c0f54d51591 | 255:52f467c7213b |
---|---|
69 SPOOLDIR = @SPOOLDIR@ | 69 SPOOLDIR = @SPOOLDIR@ |
70 VERSION = @VERSION@ | 70 VERSION = @VERSION@ |
71 | 71 |
72 bin_PROGRAMS = noffle | 72 bin_PROGRAMS = noffle |
73 | 73 |
74 noffle_SOURCES = client.c client.h common.h configfile.c configfile.h content.c content.h control.c control.h database.c database.h dynamicstring.c dynamicstring.h fetch.c fetch.h fetchlist.c fetchlist.h filter.c filter.h group.c group.h itemlist.c itemlist.h lock.c lock.h log.c log.h noffle.c online.c online.h outgoing.c outgoing.h over.c over.h portable.h post.c post.h protocol.c protocol.h pseudo.c pseudo.h request.c request.h server.c server.h util.c util.h wildmat.c wildmat.h | 74 noffle_SOURCES = client.c client.h common.h configfile.c configfile.h content.c content.h control.c control.h database.c database.h dynamicstring.c dynamicstring.h expire.c expire.h fetch.c fetch.h fetchlist.c fetchlist.h filter.c filter.h group.c group.h itemlist.c itemlist.h lock.c lock.h log.c log.h noffle.c online.c online.h outgoing.c outgoing.h over.c over.h portable.h post.c post.h protocol.c protocol.h pseudo.c pseudo.h request.c request.h server.c server.h util.c util.h wildmat.c wildmat.h |
75 | 75 |
76 | 76 |
77 noffle_LDADD = -lgdbm | 77 noffle_LDADD = -lgdbm |
78 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs | 78 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs |
79 CONFIG_HEADER = ../config.h | 79 CONFIG_HEADER = ../config.h |
84 DEFS = @DEFS@ -I. -I$(srcdir) -I.. | 84 DEFS = @DEFS@ -I. -I$(srcdir) -I.. |
85 CPPFLAGS = @CPPFLAGS@ | 85 CPPFLAGS = @CPPFLAGS@ |
86 LDFLAGS = @LDFLAGS@ | 86 LDFLAGS = @LDFLAGS@ |
87 LIBS = @LIBS@ | 87 LIBS = @LIBS@ |
88 noffle_OBJECTS = client.o configfile.o content.o control.o database.o \ | 88 noffle_OBJECTS = client.o configfile.o content.o control.o database.o \ |
89 dynamicstring.o fetch.o fetchlist.o filter.o group.o itemlist.o lock.o \ | 89 dynamicstring.o expire.o fetch.o fetchlist.o filter.o group.o \ |
90 log.o noffle.o online.o outgoing.o over.o post.o protocol.o pseudo.o \ | 90 itemlist.o lock.o log.o noffle.o online.o outgoing.o over.o post.o \ |
91 request.o server.o util.o wildmat.o | 91 protocol.o pseudo.o request.o server.o util.o wildmat.o |
92 noffle_DEPENDENCIES = | 92 noffle_DEPENDENCIES = |
93 noffle_LDFLAGS = | 93 noffle_LDFLAGS = |
94 CFLAGS = @CFLAGS@ | 94 CFLAGS = @CFLAGS@ |
95 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 95 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) |
96 CCLD = $(CC) | 96 CCLD = $(CC) |
101 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) | 101 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) |
102 | 102 |
103 TAR = tar | 103 TAR = tar |
104 GZIP_ENV = --best | 104 GZIP_ENV = --best |
105 DEP_FILES = .deps/client.P .deps/configfile.P .deps/content.P \ | 105 DEP_FILES = .deps/client.P .deps/configfile.P .deps/content.P \ |
106 .deps/control.P .deps/database.P .deps/dynamicstring.P .deps/fetch.P \ | 106 .deps/control.P .deps/database.P .deps/dynamicstring.P .deps/expire.P \ |
107 .deps/fetchlist.P .deps/filter.P .deps/group.P .deps/itemlist.P \ | 107 .deps/fetch.P .deps/fetchlist.P .deps/filter.P .deps/group.P \ |
108 .deps/lock.P .deps/log.P .deps/noffle.P .deps/online.P .deps/outgoing.P \ | 108 .deps/itemlist.P .deps/lock.P .deps/log.P .deps/noffle.P .deps/online.P \ |
109 .deps/over.P .deps/post.P .deps/protocol.P .deps/pseudo.P \ | 109 .deps/outgoing.P .deps/over.P .deps/post.P .deps/protocol.P \ |
110 .deps/request.P .deps/server.P .deps/util.P .deps/wildmat.P | 110 .deps/pseudo.P .deps/request.P .deps/server.P .deps/util.P \ |
111 .deps/wildmat.P | |
111 SOURCES = $(noffle_SOURCES) | 112 SOURCES = $(noffle_SOURCES) |
112 OBJECTS = $(noffle_OBJECTS) | 113 OBJECTS = $(noffle_OBJECTS) |
113 | 114 |
114 all: all-redirect | 115 all: all-redirect |
115 .SUFFIXES: | 116 .SUFFIXES: |