Mercurial > noffle
diff Makefile @ 26:526a4c34ee2e noffle
[svn] Applied patch from Jim Hague: support for local groups / new command
line options --create and --cancel.
author | enz |
---|---|
date | Sat, 29 Apr 2000 15:45:56 +0100 |
parents | 97ef217c3d89 |
children | cf838072290d |
line wrap: on
line diff
--- a/Makefile Sat Apr 29 14:37:59 2000 +0100 +++ b/Makefile Sat Apr 29 15:45:56 2000 +0100 @@ -2,7 +2,7 @@ # # Makefile for Noffle news server # -# $Id: Makefile 20 2000-04-18 06:11:50Z enz $ +# $Id: Makefile 32 2000-04-29 14:45:56Z enz $ # ############################################################################### @@ -18,15 +18,17 @@ CFLAGS = -Wall -O -g #CFLAGS = -Wall -g -DDEBUG -VERSION = 1.0pre5 +VERSION = 1.0pre5develop -FILESH = client.h common.h config.h content.h database.h dynamicstring.h \ - fetch.h fetchlist.h group.h lock.h log.h online.h outgoing.h over.h \ - protocol.h pseudo.h request.h server.h util.h +FILESH = client.h common.h config.h content.h control.h database.h \ + dynamicstring.h fetch.h fetchlist.h group.h itemlist.h lock.h log.h \ + online.h outgoing.h over.h post.h protocol.h pseudo.h request.h \ + server.h util.h -FILESC = fetch.c client.c config.c content.c database.c dynamicstring.c \ - fetchlist.c group.c lock.c log.c noffle.c online.c outgoing.c over.c \ - protocol.c pseudo.c request.c server.c util.c +FILESC = fetch.c client.c config.c content.c control.c database.c \ + dynamicstring.c fetchlist.c group.c itemlist.c lock.c log.c noffle.c \ + online.c outgoing.c over.c post.c protocol.c pseudo.c request.c \ + server.c util.c OBJS = $(patsubst %.c,%.o,$(FILESC))