chiark / gitweb /
0.57
[userv.git] / Makefile.in
1 #  userv - Makefile.in
2 #  
3 #  Copyright (C)1996-1997 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)"'
24 OPTIMISE=@OPTIMISE@
25 CPPFLAGS=@DEBUGDEFS@ $(XCPPFLAGS)
26 LDLIBS=@DEBUGLIBS@ $(XLDLIBS)
27
28 M4=m4
29 M4FLAGS=
30 LEX=flex
31 CWD=$(shell pwd)
32
33 INSTALL=@INSTALL@
34 INSTALL_PROGRAM=@INSTALL_PROGRAM@
35 INSTALL_DATA=@INSTALL_DATA@
36 prefix=@prefix@
37 exec_prefix=$(prefix)
38 bindir=$(exec_prefix)/bin
39 sbindir=$(exec_prefix)/sbin
40 etcdir=/etc
41 etcsubdir=$(etcdir)/userv
42
43 SOURCES=        Makefile.in configure.in acconfig.h                     \
44                 client.c common.h                                       \
45                 overlord.c process.c servexec.c                         \
46                 daemon.h debug.c parser.c lib.c lib.h                   \
47                 language.i4 lexer.l.m4 tokens.h.m4
48 ALSOSHIP=       README INSTALL Changelog COPYING \
49                 system.default system.override \
50                 spec.sgml.in overview.fig overview.ps \
51                 buildship install-sh .cvsignore
52 GENSHIP=        lexer.l lexer.c tokens.h configure config.h.in \
53                 spec.sgml spec.html spec.ps overview.ps
54
55 SHIPTARGETS=    $(SOURCES) $(ALSOSHIP) $(GENSHIP)
56
57 all:            daemon client
58
59 install:        all
60                 $(INSTALL_PROGRAM) -s -o root -g root -m 755 daemon $(sbindir)/uservd
61                 $(INSTALL_PROGRAM) -s -o root -g root -m 4755 client $(bindir)/userv
62                 $(INSTALL) -d -o root -g root -m 2755 $(etcsubdir)
63                 if ! test -f $(etcsubdir)/system.default; then \
64                         $(INSTALL_DATA) -o root -g root system.default $(etcsubdir); fi
65                 if ! test -f $(etcsubdir)/system.override; then \
66                         $(INSTALL_DATA) -o root -g root system.override $(etcsubdir); fi
67
68 daemon:         overlord.o process.o servexec.o parserlexer.o debug.o lib.o
69                 $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
70
71 lexer.l:        language.i4
72
73 spec.sgml:      spec.sgml.in Makefile
74                 sed -e '/<version><\/version>/ s/>/&$(VERSION)/' \
75                         spec.sgml.in >$@.new && mv -f $@.new $@
76
77 client.o:       config.h common.h pcsum.h version.h
78
79 process.o:      config.h common.h pcsum.h daemon.h lib.h tokens.h
80
81 overlord.o:     config.h common.h pcsum.h daemon.h
82
83 servexec.o:     config.h common.h pcsum.h daemon.h lib.h version.h
84
85 lib.o:          config.h common.h lib.h
86
87 debug.o:        config.h common.h pcsum.h daemon.h lib.h tokens.h
88
89 parserlexer.o:  lexer.c parser.c config.h common.h pcsum.h daemon.h lib.h tokens.h
90 # lexer.c #include's parser.c at the end.  Blame flex.
91                 $(CC) -c $(CPPFLAGS) $(CFLAGS) lexer.c -o $@
92
93 pcsum.h:        common.h config.h config.status Makefile
94                 cat $^ | md5sum | sed -e 's/../0x&,/g; s/,$$//;' >pcsum.h.new
95                 cmp pcsum.h.new pcsum.h || mv -f pcsum.h.new pcsum.h
96                 @rm -f pcsum.h.new
97
98 version.h:      Makefile
99                 echo '#define VERSION "$(VERSION)"' >$@.new && mv -f $@.new $@
100
101 tokens.h:       language.i4
102
103 autoconf configure:
104                 autoheader
105                 autoconf
106
107 clean:
108                 rm -f daemon client pcsum.h
109                 rm -f overview.eps
110                 rm -f spec.lout* spec.text* spec.sgml spec.sgml.new spec.ps?*
111                 rm -rf spec.html?*
112                 rm -f lout.li *.lix *.ldx config.cache
113                 rm -f *.o *~ core ./#*#
114
115 distclean:      clean
116                 rm -f config.status config.log Makefile config.h
117
118 realclean:      distclean
119                 rm -f spec.ps* spec.sgml spec.sgml.new
120                 rm -f lexer.l lexer.c tokens.h overview.ps
121                 rm -rf spec.html*
122
123 totalclean:     realclean
124                 rm -f configure config.h.in
125
126 shipprep:       $(SHIPTARGETS)
127
128 ship:           $(SHIPTARGETS)
129                 rm -rf shipcheck
130                 mkdir -p shipcheck/userv-$(VERSION)
131                 cp -a $^ shipcheck/userv-$(VERSION)
132                 cd shipcheck && \
133                  GZIP=-9v tar zvvcf userv-$(VERSION).tar.gz userv-$(VERSION)
134                 rm -rf shipcheck/userv-$(VERSION)
135
136 linecount:      $(SOURCES)
137                 wc -l $^
138
139 %.html:         %.sgml
140                 rm -rf $@; debiandoc2html $<
141
142 %.ps:           %.sgml
143                 debiandoc2ps -1 -O $< >$@.new && mv $@.new $@
144
145 %.ps:           %.fig
146                 fig2dev -L ps -c -l dummy -P -z A4 $< >$@.new && mv $@.new $@
147
148 %.l:            %.l.m4
149                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@
150
151 %.h:            %.h.m4
152                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@
153
154 %:              %.m4
155                 $(M4) $(M4FLAGS) -- $< >$@.new && mv $@.new $@