db8ba69f3240d63c1545d5db28e33b467aae53e7
[openafs.git] / src / update / 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 INSTALL = @INSTALL@
11 INSTALL_DATA = @INSTALL_DATA@
12 INSTALL_PROGRAM = @INSTALL_PROGRAM@
13 INSTALL_SCRIPT = @INSTALL_SCRIPT@
14
15 LIBS=${TOP_LIBDIR}/libauth.a \
16         ${TOP_LIBDIR}/librxkad.a \
17         ${TOP_LIBDIR}/libdes.a \
18         ${TOP_LIBDIR}/libsys.a \
19         ${TOP_LIBDIR}/librx.a \
20         ${TOP_LIBDIR}/liblwp.a \
21         ${TOP_LIBDIR}/libcom_err.a \
22         ${TOP_LIBDIR}/util.a
23
24 all: upserver upclient
25
26 #
27 # Build targets
28 #
29 upclient: client.o update.cs.o utils.o ${LIBS} 
30         ${CC} ${CFLAGS} -o upclient client.o update.cs.o utils.o ${LIBS} ${XLIBS}
31
32 upserver: server.o utils.o update.ss.o ${LIBS}
33         ${CC} ${CFLAGS} -o upserver server.o utils.o update.ss.o ${LIBS} ${XLIBS}
34
35 utils.o: utils.c update.h global.h
36
37 client.o server.o: update.h global.h AFS_component_version_number.c
38
39 update.cs.c: update.xg
40         ${RXGEN} -A -u -C -o $@ ${srcdir}/update.xg
41
42 update.ss.c: update.xg
43         ${RXGEN} -A -S -o $@ ${srcdir}/update.xg
44
45 update.xdr.c: update.xg
46         ${RXGEN} -A -c -o $@ ${srcdir}/update.xg
47
48 update.h: update.xg
49         ${RXGEN} -A -u -h -o $@ ${srcdir}/update.xg
50
51 update.cs.c: update.h
52 update.ss.c: update.h
53 update.er.c: update.h
54
55 #
56 # Installation targets
57 #
58 install: upserver upclient
59         ${INSTALL} -d ${DESTDIR}${afssrvlibexecdir}
60         ${INSTALL_PROGRAM} upserver ${DESTDIR}${afssrvlibexecdir}/upserver
61         ${INSTALL_PROGRAM} upclient ${DESTDIR}${afssrvlibexecdir}/upclient
62
63 dest: upserver upclient
64         ${INSTALL} -d ${DEST}/root.server/usr/afs/bin
65         ${INSTALL_PROGRAM} upserver ${DEST}/root.server/usr/afs/bin/upserver
66         ${INSTALL_PROGRAM} upclient ${DEST}/root.server/usr/afs/bin/upclient
67
68 #
69 # Misc. targets
70 #
71 clean: 
72         $(RM) -f *.o upclient upserver update.ss.c update.cs.c update.xdr.c update.h core \
73         AFS_component_version_number.c
74
75 include ../config/Makefile.version