chiark / gitweb /
0b430e86f73ab5859fefedca68b67d9abefa5db4
[userv.git] / Makefile.in
1 #  userv - Makefile.in
2 #  
3 #  Copyright (C)1996-1997,1999 Ian Jackson
4 #  
5 #  This is free software; you can redistribute it and/or modify it
6 #  under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation; either version 2 of the License, or
8 #  (at your option) any later version.
9 #  
10 #  This program is distributed in the hope that it will be useful, but
11 #  WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  General Public License for more details.
14 #  
15 #  You should have received a copy of the GNU General Public License
16 #  along with userv; if not, write to the Free Software
17 #  Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 VERSION=@VERSION@
20 VEREXT=std
21
22 CC=@CC@
23 CFLAGS=@CFLAGS@ $(XCFLAGS) -DVERSION='"$(VERSION)"' -DVEREXT='"$(VEREXT)"' $(WERROR)
24 OPTIMISE=@OPTIMISE@
25 CPPFLAGS=@DEBUGDEFS@ $(XCPPFLAGS)
26 LDLIBS=@DEBUGLIBS@ @LIBS@ $(XLDLIBS)
27
28 M4=m4
29 M4FLAGS=
30 LEX=flex
31 CWD=$(shell pwd)
32
33 INSTALL_GROUP=root
34 INSTALL_FLAGS=-o root -g $(INSTALL_GROUP)
35
36 INSTALL=@INSTALL@
37 INSTALL_PROGRAM=@INSTALL_PROGRAM@ $(INSTALL_FLAGS)
38 INSTALL_DATA=@INSTALL_DATA@ $(INSTALL_FLAGS)
39 prefix=@prefix@
40 exec_prefix=$(prefix)
41 bindir=$(exec_prefix)/bin
42 mandir=$(prefix)/man
43 man1dir=$(mandir)/man1
44 sbindir=$(exec_prefix)/sbin
45 etcdir=/etc
46 etcsubdir=$(etcdir)/userv
47 docdir=$(prefix)/userv
48
49 TARGETS=        daemon client
50 TARGETS_DOC_PS= spec.ps overview.ps
51 TARGETS_DOC_RM= $(TARGETS_DOC_PS) spec.html
52 TARGETS_DOC=    $(TARGETS_DOC_PS) spec.html/index.html
53 MAN1PAGES=      userv.1
54
55 SOURCES=        Makefile.in configure.in acconfig.h                     \
56                 client.c common.h                                       \
57                 overlord.c process.c servexec.c                         \
58                 daemon.h debug.c parser.c lib.c lib.h                   \
59                 language.i4 lexer.l.m4 tokens.h.m4
60
61 CONFIG_RESULTS= config.status config.log config.h config.cache \
62                 Makefile pcsum.h
63
64 GENSHIP_CLEAN=  lexer.l lexer.c tokens.h config.h.in spec.sgml $(TARGETS_DOC)
65 GENSHIP=        $(GENSHIP_CLEAN) configure
66
67 all:            $(TARGETS)
68
69 docs:           $(TARGETS_DOC)
70
71 install:        all
72                 $(INSTALL_PROGRAM) -m 755 daemon $(sbindir)/uservd
73                 $(INSTALL_PROGRAM) -m 4755 client $(bindir)/userv
74                 $(INSTALL) -d -m 2755 $(etcsubdir) \
75         $(etcsubdir)/default.d $(etcsubdir)/services.d $(etcsubdir)/override.d
76                 if test ! -f $(etcsubdir)/system.default; then \
77                         $(INSTALL_DATA) system.default $(etcsubdir); fi
78                 if test ! -f $(etcsubdir)/system.override; then \
79                         $(INSTALL_DATA) system.override $(etcsubdir); fi
80
81 install-strip:
82                 $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
83
84 install-doc:    $(TARGETS_DOC)
85                 $(INSTALL) -d -m 2755 $(docdir) $(docdir)/spec.html
86                 $(INSTALL) -d -m 2755 $(mandir) $(man1dir)
87                 $(INSTALL_DATA) -m 644 $(TARGETS_DOC_PS) $(docdir)/.
88                 $(INSTALL_DATA) -m 644 spec.html/*.html $(docdir)/spec.html/.
89                 $(INSTALL_DATA) -m 644 $(MAN1PAGES) $(man1dir)
90
91 uninstall:
92                 rm -f $(bindir)/userv $(sbindir)/uservd
93
94 uninstall-doc:
95                 cd $docdir && rm -rf $(TARGETS_DOC_RM)
96
97 daemon:         overlord.o process.o servexec.o parserlexer.o debug.o lib.o both.o
98                 $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
99
100 client:         client.o both.o
101                 $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
102
103 lexer.l:        language.i4
104
105 spec.sgml:      spec.sgml.in Makefile
106                 sed -e '/<version><\/version>/ s/>/&$(VERSION)/' \
107                         spec.sgml.in >$@.new && mv -f $@.new $@
108
109 client.o:       config.h common.h pcsum.h both.h version.h
110
111 process.o:      config.h common.h pcsum.h both.h daemon.h lib.h tokens.h
112
113 overlord.o:     config.h common.h pcsum.h daemon.h
114
115 servexec.o:     config.h common.h pcsum.h daemon.h lib.h version.h
116
117 lib.o:          config.h common.h lib.h
118
119 debug.o:        config.h common.h pcsum.h daemon.h lib.h tokens.h
120
121 parserlexer.o:  lexer.c parser.c config.h common.h pcsum.h daemon.h lib.h tokens.h
122 # lexer.c #include's parser.c at the end.  Blame flex.
123                 $(CC) -c $(CPPFLAGS) $(CFLAGS) lexer.c -o $@
124
125 pcsum.h:        common.h config.h config.status Makefile
126                 cat $^ | md5sum | sed -e 's/  -$$//; s/../0x&,/g; s/,$$//;' >pcsum.h.new
127                 cmp pcsum.h.new pcsum.h || mv -f pcsum.h.new pcsum.h
128                 @rm -f pcsum.h.new
129
130 version.h:      Makefile
131                 echo '#define VERSION "$(VERSION)"' >$@.new && mv -f $@.new $@
132
133 tokens.h:       language.i4
134
135 autoconf configure:
136                 autoheader
137                 autoconf
138
139 clean:
140                 find -name '*.orig' -o -name '*~' -o -name '.*~' \
141                         -o -name '*#' -o -name '.#*' -o -name '*.bak' \
142                         | xargs -r rm
143                 rm -rf $(TARGETS) *.o core version.h
144                 rm -f overview.eps
145                 rm -f spec.lout* spec.text* spec.ps?* spec.sgml.new
146                 rm -f lout.li *.ld *.lix *.ldx
147                 rm -f userv-*.tar.gz vd/*
148
149 distclean mostlyclean:  clean
150                 rm -f $(CONFIG_RESULTS)
151
152 maintainer-clean:       distclean
153                 rm -rf $(GENSHIP_CLEAN) spec.html/*.html
154
155 dist-prep:      $(GENSHIP)
156
157 pre-checkin:
158                 ./configure
159                 $(MAKE) dist-prep
160
161 dist_tmp=dist_tmp/userv-$(VERSION)
162 dist_prune=\( -name CVS -o -name 'dist_tmp*' -o -name slash-etc -o -name vd \)
163 dist:                   dist-prep distclean
164         rm -rf dist_tmp*
165         mkdir dist_tmp $(dist_tmp)
166         find $(dist_prune) -prune -o -type d -print | \
167                 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
168         find $(dist_prune) -prune -o -type f -print | \
169                 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
170         cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
171         gzip -9 $(dist_tmp).tar
172         mv $(dist_tmp).tar.gz .
173
174 linecount:      $(SOURCES)
175                 wc -l $^
176
177 %.html/index.html:      %.sgml
178                         debiandoc2html $<
179
180 %.ps:           %.sgml
181                 debiandoc2ps -1 -O $< >$@.new && mv $@.new $@
182
183 %.ps:           %.fig
184                 fig2dev -L ps -c -l dummy -P -z A4 $< >$@.new && mv $@.new $@
185
186 %.l:            %.l.m4
187                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@
188
189 %.h:            %.h.m4
190                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@
191
192 %:              %.m4
193                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@