comparison 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
comparison
equal deleted inserted replaced
25:ab6cf19be6d3 26:526a4c34ee2e
1 ############################################################################### 1 ###############################################################################
2 # 2 #
3 # Makefile for Noffle news server 3 # Makefile for Noffle news server
4 # 4 #
5 # $Id: Makefile 20 2000-04-18 06:11:50Z enz $ 5 # $Id: Makefile 32 2000-04-29 14:45:56Z 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
16 16
17 CC = gcc 17 CC = gcc
18 CFLAGS = -Wall -O -g 18 CFLAGS = -Wall -O -g
19 #CFLAGS = -Wall -g -DDEBUG 19 #CFLAGS = -Wall -g -DDEBUG
20 20
21 VERSION = 1.0pre5 21 VERSION = 1.0pre5develop
22 22
23 FILESH = client.h common.h config.h content.h database.h dynamicstring.h \ 23 FILESH = client.h common.h config.h content.h control.h database.h \
24 fetch.h fetchlist.h group.h lock.h log.h online.h outgoing.h over.h \ 24 dynamicstring.h fetch.h fetchlist.h group.h itemlist.h lock.h log.h \
25 protocol.h pseudo.h request.h server.h util.h 25 online.h outgoing.h over.h post.h protocol.h pseudo.h request.h \
26 server.h util.h
26 27
27 FILESC = fetch.c client.c config.c content.c database.c dynamicstring.c \ 28 FILESC = fetch.c client.c config.c content.c control.c database.c \
28 fetchlist.c group.c lock.c log.c noffle.c online.c outgoing.c over.c \ 29 dynamicstring.c fetchlist.c group.c itemlist.c lock.c log.c noffle.c \
29 protocol.c pseudo.c request.c server.c util.c 30 online.c outgoing.c over.c post.c protocol.c pseudo.c request.c \
31 server.c util.c
30 32
31 OBJS = $(patsubst %.c,%.o,$(FILESC)) 33 OBJS = $(patsubst %.c,%.o,$(FILESC))
32 34
33 all: noffle 35 all: noffle
34 36