chiark / gitweb /
32bd0e8e976d3a4ca7f61b5d6bd5d2e471a6c9bc
[userv.git] / Makefile
1 # Generated automatically from Makefile.in by configure.
2 #  userv - Makefile.in
3 #  
4 #  Copyright (C)1996-1997 Ian Jackson
5 #  
6 #  This is free software; you can redistribute it and/or modify it
7 #  under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation; either version 2 of the License, or
9 #  (at your option) any later version.
10 #  
11 #  This program is distributed in the hope that it will be useful, but
12 #  WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  General Public License for more details.
15 #  
16 #  You should have received a copy of the GNU General Public License
17 #  along with userv; if not, write to the Free Software
18 #  Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 VERSION=0.58
21 VEREXT=std
22
23 CC=gcc
24 CFLAGS=-g $(OPTIMISE) -Wall -Wno-implicit -Wwrite-strings -Wpointer-arith -Wimplicit -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes -Werror $(XCFLAGS) -DVERSION='"$(VERSION)"' -DVEREXT='"$(VEREXT)"'
25 OPTIMISE=-O2
26 CPPFLAGS=-DDEBUG -DVARDIR='"/u/ian/things/userv/vd"' -DSYSTEMCONFIGDIR='"/u/ian/things/userv/slash-etc"' -DSERVICEUSERDIR='"/u/ian/things/userv/tilde"' $(XCPPFLAGS)
27 LDLIBS=-lefence $(XLDLIBS)
28
29 M4=m4
30 M4FLAGS=
31 LEX=flex
32 CWD=$(shell pwd)
33
34 INSTALL=/usr/bin/install -c
35 INSTALL_PROGRAM=${INSTALL}
36 INSTALL_DATA=${INSTALL} -m 644
37 prefix=/usr/local
38 exec_prefix=$(prefix)
39 bindir=$(exec_prefix)/bin
40 sbindir=$(exec_prefix)/sbin
41 etcdir=/etc
42 etcsubdir=$(etcdir)/userv
43
44 SOURCES=        Makefile.in configure.in acconfig.h                     \
45                 client.c common.h                                       \
46                 overlord.c process.c servexec.c                         \
47                 daemon.h debug.c parser.c lib.c lib.h                   \
48                 language.i4 lexer.l.m4 tokens.h.m4
49 ALSOSHIP=       README INSTALL Changelog COPYING \
50                 system.default system.override \
51                 spec.sgml.in overview.fig overview.ps \
52                 buildship install-sh .cvsignore
53 GENSHIP=        lexer.l lexer.c tokens.h configure config.h.in \
54                 spec.sgml spec.html spec.ps overview.ps
55
56 SHIPTARGETS=    $(SOURCES) $(ALSOSHIP) $(GENSHIP)
57
58 all:            daemon client
59
60 install:        all
61                 $(INSTALL_PROGRAM) -s -o root -g root -m 755 daemon $(sbindir)/uservd
62                 $(INSTALL_PROGRAM) -s -o root -g root -m 4755 client $(bindir)/userv
63                 $(INSTALL) -d -o root -g root -m 2755 $(etcsubdir)
64                 if ! test -f $(etcsubdir)/system.default; then \
65                         $(INSTALL_DATA) -o root -g root system.default $(etcsubdir); fi
66                 if ! test -f $(etcsubdir)/system.override; then \
67                         $(INSTALL_DATA) -o root -g root system.override $(etcsubdir); fi
68
69 daemon:         overlord.o process.o servexec.o parserlexer.o debug.o lib.o
70                 $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
71
72 lexer.l:        language.i4
73
74 spec.sgml:      spec.sgml.in Makefile
75                 sed -e '/<version><\/version>/ s/>/&$(VERSION)/' \
76                         spec.sgml.in >$@.new && mv -f $@.new $@
77
78 client.o:       config.h common.h pcsum.h version.h
79
80 process.o:      config.h common.h pcsum.h daemon.h lib.h tokens.h
81
82 overlord.o:     config.h common.h pcsum.h daemon.h
83
84 servexec.o:     config.h common.h pcsum.h daemon.h lib.h version.h
85
86 lib.o:          config.h common.h lib.h
87
88 debug.o:        config.h common.h pcsum.h daemon.h lib.h tokens.h
89
90 parserlexer.o:  lexer.c parser.c config.h common.h pcsum.h daemon.h lib.h tokens.h
91 # lexer.c #include's parser.c at the end.  Blame flex.
92                 $(CC) -c $(CPPFLAGS) $(CFLAGS) lexer.c -o $@
93
94 pcsum.h:        common.h config.h config.status Makefile
95                 cat $^ | md5sum | sed -e 's/../0x&,/g; s/,$$//;' >pcsum.h.new
96                 cmp pcsum.h.new pcsum.h || mv -f pcsum.h.new pcsum.h
97                 @rm -f pcsum.h.new
98
99 version.h:      Makefile
100                 echo '#define VERSION "$(VERSION)"' >$@.new && mv -f $@.new $@
101
102 tokens.h:       language.i4
103
104 autoconf configure:
105                 autoheader
106                 autoconf
107
108 clean:
109                 rm -f daemon client pcsum.h
110                 rm -f overview.eps
111                 rm -f spec.lout* spec.text* spec.sgml spec.sgml.new spec.ps?*
112                 rm -rf spec.html?*
113                 rm -f lout.li *.lix *.ldx config.cache
114                 rm -f *.o *~ core ./#*#
115
116 distclean:      clean
117                 rm -f config.status config.log Makefile config.h
118
119 realclean:      distclean
120                 rm -f spec.ps* spec.sgml spec.sgml.new
121                 rm -f lexer.l lexer.c tokens.h overview.ps
122                 rm -rf spec.html*
123
124 totalclean:     realclean
125                 rm -f configure config.h.in
126
127 shipprep:       $(SHIPTARGETS)
128
129 ship:           $(SHIPTARGETS)
130                 rm -rf shipcheck
131                 mkdir -p shipcheck/userv-$(VERSION)
132                 cp -a $^ shipcheck/userv-$(VERSION)
133                 cd shipcheck && \
134                  GZIP=-9v tar zvvcf userv-$(VERSION).tar.gz userv-$(VERSION)
135                 rm -rf shipcheck/userv-$(VERSION)
136
137 linecount:      $(SOURCES)
138                 wc -l $^
139
140 %.html:         %.sgml
141                 rm -rf $@; debiandoc2html $<
142
143 %.ps:           %.sgml
144                 debiandoc2ps -1 -O $< >$@.new && mv $@.new $@
145
146 %.ps:           %.fig
147                 fig2dev -L ps -c -l dummy -P -z A4 $< >$@.new && mv $@.new $@
148
149 %.l:            %.l.m4
150                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@
151
152 %.h:            %.h.m4
153                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@
154
155 %:              %.m4
156                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@