Mercurial > noffle
annotate Makefile @ 42:2467ff423c15 noffle
[svn] * AUTHORS.html, CHANGELOG.html, COPYING.html, README.html, FAQ.html,
NOTES.html, INSTALL.html: Removed files.
* AUTHORS, COPYING, ChangeLog, README, INSTALL, NEWS, docs/FAQ, docs/NOTES:
Added files.
* TODO.TXT: Renamed to TODO. Slightly changed formatting.
* README: Reformatted the file. Added info about CVS. Added a pointer to
the file INSTALL.
* noffle.1, noffle.conf.5: Moved to docs/
* LSM.TXT: Moved to docs/noffle.lsm. Small fix.
* INSTALL: Adapted to autoconf build-system. A few minor fixes.
author | uh1763 |
---|---|
date | Fri, 05 May 2000 21:26:14 +0100 |
parents | 8e972daaeab9 |
children |
rev | line source |
---|---|
0 | 1 ############################################################################### |
2 # | |
3 # Makefile for Noffle news server | |
4 # | |
38 | 5 # $Id: Makefile 44 2000-05-05 07:23:15Z enz $ |
0 | 6 # |
7 ############################################################################### | |
8 | |
9 SPOOLDIR = /var/spool/noffle | |
10 PREFIX = /usr/local | |
11 | |
12 CONFIGFILE = /etc/noffle.conf | |
13 BINDIR = $(PREFIX)/bin | |
14 MANDIR = $(PREFIX)/man | |
15 DOCDIR = $(PREFIX)/doc/noffle | |
16 | |
17 CC = gcc | |
18 CFLAGS = -Wall -O -g | |
19 #CFLAGS = -Wall -g -DDEBUG | |
20 | |
26
526a4c34ee2e
[svn] Applied patch from Jim Hague: support for local groups / new command
enz
parents:
14
diff
changeset
|
21 VERSION = 1.0pre5develop |
0 | 22 |
26
526a4c34ee2e
[svn] Applied patch from Jim Hague: support for local groups / new command
enz
parents:
14
diff
changeset
|
23 FILESH = client.h common.h config.h content.h control.h database.h \ |
526a4c34ee2e
[svn] Applied patch from Jim Hague: support for local groups / new command
enz
parents:
14
diff
changeset
|
24 dynamicstring.h fetch.h fetchlist.h group.h itemlist.h lock.h log.h \ |
526a4c34ee2e
[svn] Applied patch from Jim Hague: support for local groups / new command
enz
parents:
14
diff
changeset
|
25 online.h outgoing.h over.h post.h protocol.h pseudo.h request.h \ |
38 | 26 server.h util.h wildmat.h |
0 | 27 |
26
526a4c34ee2e
[svn] Applied patch from Jim Hague: support for local groups / new command
enz
parents:
14
diff
changeset
|
28 FILESC = fetch.c client.c config.c content.c control.c database.c \ |
526a4c34ee2e
[svn] Applied patch from Jim Hague: support for local groups / new command
enz
parents:
14
diff
changeset
|
29 dynamicstring.c fetchlist.c group.c itemlist.c lock.c log.c noffle.c \ |
526a4c34ee2e
[svn] Applied patch from Jim Hague: support for local groups / new command
enz
parents:
14
diff
changeset
|
30 online.c outgoing.c over.c post.c protocol.c pseudo.c request.c \ |
38 | 31 server.c util.c wildmat.c |
0 | 32 |
33 OBJS = $(patsubst %.c,%.o,$(FILESC)) | |
34 | |
35 all: noffle | |
36 | |
37 noffle: $(OBJS) | |
38 $(CC) $(CFLAGS) -o noffle $(OBJS) -lgdbm | |
39 | |
40 config.o: config.c config.h Makefile | |
41 $(CC) $(CFLAGS) -c -DSPOOLDIR=\"$(SPOOLDIR)\" \ | |
42 -DVERSION=\"$(VERSION)\" -DCONFIGFILE=\"$(CONFIGFILE)\" config.c | |
43 | |
44 log.o: log.c log.h Makefile | |
45 | |
46 depend: | |
47 gcc -MM -MG -E $(FILESC) >depend | |
48 | |
49 clean: | |
50 rm -f depend $(OBJS) noffle | |
51 | |
52 install: noffle | |
53 install -o 0 -g 0 -d $(RPM_BUILD_ROOT)$(BINDIR) | |
54 install -m 4755 -o news -g news noffle $(RPM_BUILD_ROOT)$(BINDIR) | |
55 install -o 0 -g 0 -d $(RPM_BUILD_ROOT)$(MANDIR)/man1 | |
56 install -m 0644 -o 0 -g 0 noffle.1 \ | |
57 $(RPM_BUILD_ROOT)$(MANDIR)/man1/noffle.1 | |
58 install -o 0 -g 0 -d $(RPM_BUILD_ROOT)$(MANDIR)/man5 | |
59 install -m 0644 -o 0 -g 0 noffle.conf.5 \ | |
60 $(RPM_BUILD_ROOT)$(MANDIR)/man5/noffle.conf.5 | |
61 install -m 2755 -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR) | |
62 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/data | |
63 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/lock | |
64 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/requested | |
65 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/outgoing | |
66 install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/overview | |
67 install -o 0 -g 0 -d $(RPM_BUILD_ROOT)$(DOCDIR) | |
38 | 68 install -m 0644 -o 0 -g 0 README.html $(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.html $(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.html $(RPM_BUILD_ROOT)$(DOCDIR) | |
73 install -m 0644 -o 0 -g 0 COPYING.html $(RPM_BUILD_ROOT)$(DOCDIR) | |
0 | 74 install -m 0644 -o 0 -g 0 noffle.conf.example \ |
75 $(RPM_BUILD_ROOT)$(DOCDIR) | |
76 chown -R news.news $(RPM_BUILD_ROOT)$(SPOOLDIR) | |
77 @echo | |
38 | 78 @echo Read INSTALL.html for further instructions. |
0 | 79 |
80 tags: | |
31
cf838072290d
[svn] Replaced usage of etags by ctags, because etags no longer works on my system.
enz
parents:
26
diff
changeset
|
81 ctags -e $(FILESC) $(FILESH) |
0 | 82 |
83 -include depend |