Replace bits of libutil with libroken
[openafs.git] / src / tubik / Makefile.in
1 # Copyright 2000, International Business Machines Corporation and others.
2 # All Rights Reserved.
3
4 # This software has been released under the terms of the IBM Public
5 # License.  For details, see the LICENSE file in the top-level source
6 # directory or online at http://www.openafs.org/dl/license10.html
7
8 srcdir=@srcdir@
9 include @TOP_OBJDIR@/src/config/Makefile.config
10 include @TOP_OBJDIR@/src/config/Makefile.pthread
11
12 INSTALL = @INSTALL@
13 INSTALL_DATA = @INSTALL_DATA@
14 INSTALL_PROGRAM = @INSTALL_PROGRAM@
15 INSTALL_SCRIPT = @INSTALL_SCRIPT@
16 HELPER_SPLINT=@HELPER_SPLINT@
17
18 UBIK=$(srcdir)/../ubik
19 RX=$(srcdir)/../rx
20 UTIL=$(srcdir)/../util
21
22 LIBOBJS=disk.o  remote.o beacon.o recovery.o ubik.o  vote.o lock.o phys.o \
23         ubik_int.cs.o ubik_int.ss.o ubik_int.xdr.o ubikcmd.o \
24         ubikclient.o uerrors.o uinit.o
25
26 INCLS=${TOP_INCDIR}/lwp.h ${TOP_INCDIR}/lock.h \
27         ${TOP_INCDIR}/rx/rx.h ${TOP_INCDIR}/rx/xdr.h \
28         ${TOP_INCDIR}/lock.h ubik.h ubik_int.h utst_int.h
29
30 RXOBJS = rx_pthread.o
31
32 UTILOBJS=assert.o uuid.o serverLog.o fileutil.o netutils.o dirpath.o \
33        volparse.o flipbase64.o softsig.o hostparse.o snprintf.o \
34        pthread_glock.o
35
36 LIBS=${RXOBJS} ${UTILOBJS} ${TOP_LIBDIR}/libafsrpc.a ${TOP_LIBDIR}/liblwp.a \
37      ${TOP_LIBDIR}/libcom_err.a ${TOP_LIBDIR}/libcmd.a \
38      ${TOP_LIBDIR}/libsys.a ${XLIBS} ${MT_LIBS}
39
40 all: depinstall ${TOP_LIBDIR}/libubik_pthread.a udebug utst_server utst_client
41
42 depinstall: \
43         ubik_int.cs.c ubik_int.xdr.c \
44         ${TOP_INCDIR}/ubik.h \
45         ${TOP_INCDIR}/ubik_int.h
46
47 #
48 # get the pthreaded rx stuff compiled here
49 #
50
51 CFLAGS_rx_pthread.o = -DDPF_FSLOG
52 rx_pthread.o: ${RX}/rx_pthread.c
53         $(AFS_CCRULE) $(RX)/rx_pthread.c
54
55 #
56 # get the pthreaded util stuff compiled here.  we do this instead of
57 # using the non-pthreaded libutil.a.  There probably should be a
58 # pthreaded version of this library, as we are doing with ubik itself, but...
59 #
60
61 assert.o: ${UTIL}/assert.c
62         $(AFS_CCRULE) $(UTIL)/assert.c
63
64 uuid.o: ${UTIL}/uuid.c
65         $(AFS_CCRULE) $(UTIL)/uuid.c
66
67 serverLog.o: ${UTIL}/serverLog.c
68         $(AFS_CCRULE) $(UTIL)/serverLog.c
69
70 fileutil.o: ${UTIL}/fileutil.c
71         $(AFS_CCRULE) $(UTIL)/fileutil.c
72
73 volparse.o: ${UTIL}/volparse.c
74         $(AFS_CCRULE) $(UTIL)/volparse.c
75
76 flipbase64.o: ${UTIL}/flipbase64.c
77         $(AFS_CCRULE) $(UTIL)/flipbase64.c
78
79 netutils.o: ${UTIL}/netutils.c
80         $(AFS_CCRULE) $(UTIL)/netutils.c
81
82 dirpath.o: ${UTIL}/dirpath.c
83         $(AFS_CCRULE) $(UTIL)/dirpath.c
84
85 softsig.o: ${UTIL}/softsig.c
86         $(AFS_CCRULE) $(UTIL)/softsig.c
87
88 hostparse.o: ${UTIL}/hostparse.c
89         $(AFS_CCRULE) $(UTIL)/hostparse.c
90
91 snprintf.o: ${UTIL}/snprintf.c
92         $(AFS_CCRULE) $(UTIL)/snprintf.c
93
94 pthread_glock.o: ${UTIL}/pthread_glock.c
95         $(AFS_CCRULE) $(UTIL)/pthread_glock.c
96
97 #
98 # insert comments here
99 #
100
101 utst_server: utst_server.o utst_int.ss.o utst_int.xdr.o libubik_pthread.a ${RXOBJS} ${UTILOBJS}
102         $(AFS_LDRULE) utst_server.o utst_int.ss.o utst_int.xdr.o \
103                 libubik_pthread.a $(LIBS)
104
105 utst_client: utst_client.o utst_int.cs.o utst_int.xdr.o libubik_pthread.a ${RXOBJS} ${UTILOBJS}
106         $(AFS_LDRULE) utst_client.o utst_int.cs.o utst_int.xdr.o \
107                 libubik_pthread.a $(LIBS)
108
109 udebug: udebug.o libubik_pthread.a ${RXOBJS} ${UTILOBJS}
110         $(AFS_LDRULE) udebug.o libubik_pthread.a $(LIBS)
111
112 ubik_int.cs.c: ${UBIK}/ubik_int.xg
113         ${RXGEN} -A -x -C -o $@ ${UBIK}/ubik_int.xg
114
115 ubik_int.ss.c: ${UBIK}/ubik_int.xg
116         ${RXGEN} -A -x -S -o $@ ${UBIK}/ubik_int.xg
117
118 ubik_int.xdr.c: ${UBIK}/ubik_int.xg
119         ${RXGEN} -A -x -c -o $@ ${UBIK}/ubik_int.xg
120
121 ubik_int.h: ${UBIK}/ubik_int.xg
122         ${RXGEN} -A -x -h -o $@ ${UBIK}/ubik_int.xg
123
124 ubik_int.cs.c: ubik_int.h
125 ubik_int.ss.c: ubik_int.h
126 ubik_int.xdr.c: ubik_int.h
127
128 Kubik_int.cs.c: ${UBIK}/ubik_int.xg Kubik_int.h
129         ${RXGEN} -A -x -k -C -o Kubik_int.cs.c ${UBIK}/ubik_int.xg
130  
131 Kubik_int.xdr.c: ${UBIK}/ubik_int.xg
132         ${RXGEN} -A -x -k -c -o Kubik_int.xdr.c ${UBIK}/ubik_int.xg
133  
134 Kubik_int.h: ${UBIK}/ubik_int.xg
135         ${RXGEN} -A -x -k -h -o Kubik_int.h ${UBIK}/ubik_int.xg
136
137 utst_int.ss.o: utst_int.ss.c
138 utst_int.cs.o: utst_int.cs.c
139 utst_int.xdr.o: utst_int.xdr.c
140
141 utst_int.cs.c: ${UBIK}/utst_int.xg
142         ${RXGEN} -A -C -u -o $@ ${UBIK}/utst_int.xg
143
144 utst_int.ss.c: ${UBIK}/utst_int.xg
145         ${RXGEN} -A -S -o $@ ${UBIK}/utst_int.xg
146
147 utst_int.xdr.c: ${UBIK}/utst_int.xg
148         ${RXGEN} -A -c -o $@ ${UBIK}/utst_int.xg
149
150 utst_int.h: ${UBIK}/utst_int.xg
151         ${RXGEN} -A -h -u -o $@ ${UBIK}/utst_int.xg
152
153 utst_int.cs.c: utst_int.h
154 utst_int.ss.c: utst_int.h
155 utst_int.xdr.c: utst_int.h
156
157 utst_server.o: ${UBIK}/utst_server.c
158         ${AFS_CCRULE} ${UBIK}/utst_server.c
159
160 utst_client.o: ${UBIK}/utst_client.c
161         ${AFS_CCRULE} ${UBIK}/utst_client.c
162
163 udebug.o: ${UBIK}/udebug.c
164         ${AFS_CCRULE} ${UBIK}/udebug.c
165
166 uerrors.c ubik.h: ${UBIK}/uerrors.et ${UBIK}/ubik.p.h
167         $(RM) -f ubik.h uerrors.c
168         ${COMPILE_ET} -p ${UBIK} uerrors -h ubik
169
170 libubik_pthread.a: ${INCLS} ${LIBOBJS} AFS_component_version_number.o
171         -$(RM) -f $@
172         $(AR) crc $@ ${LIBOBJS} AFS_component_version_number.o
173         $(RANLIB) $@
174
175 disk.o: ${UBIK}/disk.c
176         $(AFS_CCRULE) $(UBIK)/disk.c
177
178 uinit.o: ${UBIK}/uinit.c
179         $(AFS_CCRULE) $(UBIK)/uinit.c
180
181 remote.o: ${UBIK}/remote.c
182         $(AFS_CCRULE) $(UBIK)/remote.c
183
184 beacon.o: ${UBIK}/beacon.c
185         $(AFS_CCRULE) $(UBIK)/beacon.c
186
187 lock.o: ${UBIK}/lock.c
188         $(AFS_CCRULE) $(UBIK)/lock.c
189
190 recovery.o: ${UBIK}/recovery.c
191         $(AFS_CCRULE) $(UBIK)/recovery.c
192
193 ubik.o: ${UBIK}/ubik.c
194         $(AFS_CCRULE) $(UBIK)/ubik.c
195
196 phys.o: ${UBIK}/phys.c
197         $(AFS_CCRULE) $(UBIK)/phys.c
198
199 vote.o: ${UBIK}/vote.c
200         $(AFS_CCRULE) $(UBIK)/vote.c
201
202 ubikcmd.o: ${UBIK}/ubikcmd.c
203         $(AFS_CCRULE) $(UBIK)/ubikcmd.c
204
205 ubikclient.o: ${UBIK}/ubikclient.c
206         $(AFS_CCRULE) $(UBIK)/ubikclient.c
207 ubik_int.xdr.o: ubik_int.xdr.c
208
209 #
210 # Installation targets
211 #
212 test: all
213
214 install: ${DESTDIR}${libdir}/libubik_pthread.a udebug
215         ${INSTALL} udebug ${DESTDIR}${bindir}/udebug
216         ${INSTALL} udebug ${DESTDIR}${afssrvbindir}/udebug
217
218 ${DEST}/bin/udebug ${DEST}/root.server/usr/afs/bin/udebug: udebug
219         ${INSTALL} $? $@
220
221 ${DEST}/lib/libubik_pthread.a: libubik_pthread.a
222         ${INSTALL} $? $@
223
224 ${DEST}/include/ubik.h: ubik.h
225         ${INSTALL} $? $@
226
227 ${DEST}/include/ubik_int.h: ubik_int.h
228         ${INSTALL} $? $@
229
230 #
231 # Misc. targets
232 #
233 clean:
234         $(RM) -f *.o utst_server utst_client udebug *.a *.cs.c *.ss.c *.xdr.c
235         $(RM) -f utst_int.h ubik_int.h uerrors.c ubik.h core AFS_component_version_number.c Kubik_int.h
236
237 include ../config/Makefile.version
238
239
240 ${DESTDIR}${libdir}/libubik_pthread.a: libubik_pthread.a
241         ${INSTALL} $? $@
242
243 ${TOP_LIBDIR}/libubik_pthread.a: libubik_pthread.a
244         ${INSTALL} $? $@
245
246 ${DESTDIR}${includedir}/ubik.h: ubik.h
247         ${INSTALL} $? $@
248
249 ${TOP_INCDIR}/ubik.h: ubik.h
250         ${INSTALL} $? $@
251
252 ${DESTDIR}${includedir}/ubik_int.h: ubik_int.h
253         ${INSTALL} $? $@
254
255 ${TOP_INCDIR}/ubik_int.h: ubik_int.h
256         ${INSTALL} $? $@
257
258 dest: \
259         ${DEST}/lib/libubik_pthread.a \
260         ${DEST}/bin/udebug \
261         ${DEST}/root.server/usr/afs/bin/udebug
262