]> andersk Git - moira.git/blob - update/Makefile
418ca779db65080b4eb3501904064fb67c650f34
[moira.git] / update / Makefile
1 #
2 #       $Source$
3 #       $Header$
4 #
5
6 #
7 # Makefile for 'update' directory.
8 #
9
10 CC=     cc
11 INCS=   -I../include
12 DEFS=
13 CFLAGS= -g ${INCS} ${DEFS}
14 LINTFLAGS= ${INCS}
15 LDFLAGS= -x
16
17 # server object files
18 SOBJS=  dispatch.o initialize_server.o \
19         quit.o xfer_001.o misc.o inst_001.o sync.o auth_001.o \
20         exec_001.o get_file.o xfer_002.o exec_002.o
21
22 # client object files
23 COBJS=  client2.o ticket.o send_file.o
24
25 # common object files
26 COMOBJS= log_error.o hostname.o smsu_int.o log.o checksum.o
27
28 SSRCS=  dispatch.c initialize_server.c \
29         quit.c xfer_001.c misc.c inst_001.c sync.c auth_001.c \
30         exec_001.c get_file.c xfer_002.c exec_002.c
31
32 CSRCS=  client.c ticket.c send_file.c client2.c
33
34 COMSRCS= log_error.c hostname.c log.c checksum.c
35
36 # libmisc.a includes libcom_err.a and a working malloc()
37 LIBS=   -L../lib -lgdb -lkrb -ldes -lcom_err
38
39 all:    server sms_update.o test
40
41 clean:  
42         -rm -f ${COBJS} ${SOBJS} ${COMOBJS} client.o
43         -rm -f server sms_update.o test test.o smsu_int.h
44         -rm -f core a.out *~ \#*
45
46 install:
47 # This is probably wrong..
48         install server ../bin/update_server
49         install test ../bin/update_test
50
51 lint:
52         lint ${LINTFLAGS} ${SSRCS} ${COMSRCS}
53         lint ${LINTFLAGS} ${CSRCS} ${COMSRCS}
54
55 server: ${SOBJS} ${COMOBJS}
56         rm -f server
57         ${CC} ${CFLAGS} -o server ${SOBJS} ${COMOBJS} ${LIBS}
58
59 sms_update.o:   ${COBJS} ${COMOBJS}
60         ld ${LDFLAGS} -r -o sms_update.o ${COBJS} ${COMOBJS}
61         -chmod -x sms_update.o
62
63 smsu_int.o smsu_int.h: smsu_int.et
64         compile_et smsu_int
65
66 test.o: test.c
67         -rm -f test.o
68         ${CC} ${CFLAGS} -c test.c
69
70 test:   test.o sms_update.o
71         rm -f test
72         ${CC} ${CFLAGS} -o test test.o sms_update.o ${LIBS}
73
74 SRCS=   ${SSRCS} ${CSRCS} ${COMSRCS}
75 depend: smsu_int.h
76         -rm -f eddep makedep
77         ${CC} -M ${CFLAGS} ${SRCS} | \
78         sed -e 's; ./; ;' \
79             -e ':loop' \
80             -e 's/\.\.\/[^ /]*\/\.\./../' \
81             -e 't loop' | \
82         awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
83                 else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
84                        else rec = rec " " $$2 } } \
85               END { print rec } ' > makedep
86         echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >eddep
87         echo '$$r makedep' >>eddep
88         echo 'w' >>eddep
89         -rm -f Makefile.bak
90         cp Makefile Makefile.bak
91         ed - Makefile < eddep
92         rm -f eddep makedep
93 #
94 # the last line in the makefile should be...
95 # DO NOT DELETE THIS LINE
96
97 dispatch.o: dispatch.c /usr/include/stdio.h ../include/gdb.h
98 dispatch.o: /usr/include/sys/types.h /usr/include/sys/time.h
99 dispatch.o: /usr/include/time.h /usr/include/errno.h /usr/include/strings.h
100 dispatch.o: ../include/update.h sms_update_int.h smsu_int.h kludge.h
101 initialize_server.o: initialize_server.c /usr/include/stdio.h ../include/gdb.h
102 initialize_server.o: /usr/include/sys/types.h /usr/include/sys/time.h
103 initialize_server.o: /usr/include/time.h
104 quit.o: quit.c /usr/include/stdio.h ../include/gdb.h /usr/include/sys/types.h
105 quit.o: /usr/include/sys/time.h /usr/include/time.h
106 xfer_001.o: xfer_001.c /usr/include/stdio.h /usr/include/strings.h
107 xfer_001.o: ../include/gdb.h /usr/include/sys/types.h /usr/include/sys/time.h
108 xfer_001.o: /usr/include/time.h /usr/include/ctype.h /usr/include/sys/param.h
109 xfer_001.o: /usr/include/machine/machparam.h /usr/include/signal.h
110 xfer_001.o: /usr/include/sys/types.h /usr/include/sys/file.h smsu_int.h
111 xfer_001.o: kludge.h
112 misc.o: misc.c /usr/include/stdio.h ../include/gdb.h /usr/include/sys/types.h
113 misc.o: /usr/include/sys/time.h /usr/include/time.h sms_update_int.h kludge.h
114 misc.o: /usr/include/sys/param.h /usr/include/machine/machparam.h
115 misc.o: /usr/include/signal.h /usr/include/sys/types.h smsu_int.h
116 inst_001.o: inst_001.c /usr/include/stdio.h ../include/gdb.h
117 inst_001.o: /usr/include/sys/types.h /usr/include/sys/time.h
118 inst_001.o: /usr/include/time.h kludge.h sms_update_int.h
119 sync.o: sync.c /usr/include/stdio.h ../include/gdb.h /usr/include/sys/types.h
120 sync.o: /usr/include/sys/time.h /usr/include/time.h kludge.h smsu_int.h
121 auth_001.o: auth_001.c /usr/include/stdio.h /usr/include/strings.h
122 auth_001.o: ../include/gdb.h /usr/include/sys/types.h /usr/include/sys/time.h
123 auth_001.o: /usr/include/time.h smsu_int.h kludge.h /usr/include/krb.h
124 auth_001.o: /usr/include/des.h /usr/include/netinet/in.h /usr/include/errno.h
125 exec_001.o: exec_001.c /usr/include/stdio.h ../include/gdb.h
126 exec_001.o: /usr/include/sys/types.h /usr/include/sys/time.h
127 exec_001.o: /usr/include/time.h sms_update_int.h kludge.h smsu_int.h
128 get_file.o: get_file.c /usr/include/stdio.h ../include/gdb.h
129 get_file.o: /usr/include/sys/types.h /usr/include/sys/time.h
130 get_file.o: /usr/include/time.h /usr/include/ctype.h /usr/include/sys/param.h
131 get_file.o: /usr/include/machine/machparam.h /usr/include/signal.h
132 get_file.o: /usr/include/sys/types.h /usr/include/sys/file.h
133 get_file.o: ../include/update.h smsu_int.h kludge.h
134 xfer_002.o: xfer_002.c /usr/include/stdio.h ../include/gdb.h
135 xfer_002.o: /usr/include/sys/types.h /usr/include/sys/time.h
136 xfer_002.o: /usr/include/time.h /usr/include/ctype.h /usr/include/sys/param.h
137 xfer_002.o: /usr/include/machine/machparam.h /usr/include/signal.h
138 xfer_002.o: /usr/include/sys/types.h /usr/include/sys/file.h smsu_int.h
139 xfer_002.o: kludge.h /usr/include/strings.h
140 exec_002.o: exec_002.c /usr/include/stdio.h /usr/include/sys/wait.h
141 exec_002.o: ../include/gdb.h /usr/include/sys/types.h /usr/include/sys/time.h
142 exec_002.o: /usr/include/time.h ../include/update.h sms_update_int.h kludge.h
143 exec_002.o: smsu_int.h
144 client.o: client.c /usr/include/stdio.h ../include/gdb.h
145 client.o: /usr/include/sys/types.h /usr/include/sys/time.h /usr/include/time.h
146 client.o: /usr/include/sys/stat.h /usr/include/sys/file.h
147 client.o: /usr/include/sys/param.h /usr/include/machine/machparam.h
148 client.o: /usr/include/signal.h /usr/include/sys/types.h ../include/update.h
149 client.o: /usr/include/errno.h sms_update_int.h smsu_int.h /usr/include/krb.h
150 client.o: /usr/include/des.h kludge.h
151 stubs.o: stubs.c ../include/update.h
152 ticket.o: ticket.c /usr/include/stdio.h /usr/include/krb.h /usr/include/des.h
153 ticket.o: /usr/include/sys/types.h /usr/include/sys/stat.h
154 ticket.o: /usr/include/strings.h sms_update_int.h ../include/com_err.h
155 ticket.o: ../include/mit-sipb-copyright.h kludge.h
156 send_file.o: send_file.c /usr/include/stdio.h ../include/com_err.h
157 send_file.o: ../include/mit-sipb-copyright.h ../include/gdb.h
158 send_file.o: /usr/include/sys/types.h /usr/include/sys/time.h
159 send_file.o: /usr/include/time.h smsu_int.h /usr/include/sys/file.h
160 send_file.o: ../include/update.h sms_update_int.h kludge.h
161 client2.o: client2.c /usr/include/stdio.h /usr/include/strings.h
162 client2.o: ../include/gdb.h /usr/include/sys/types.h /usr/include/sys/time.h
163 client2.o: /usr/include/time.h /usr/include/sys/stat.h /usr/include/sys/file.h
164 client2.o: /usr/include/sys/param.h /usr/include/machine/machparam.h
165 client2.o: /usr/include/signal.h /usr/include/sys/types.h ../include/update.h
166 client2.o: /usr/include/errno.h sms_update_int.h smsu_int.h /usr/include/krb.h
167 client2.o: /usr/include/des.h kludge.h
168 log_error.o: log_error.c /usr/include/stdio.h /usr/include/syslog.h
169 hostname.o: hostname.c /usr/include/stdio.h /usr/include/sys/types.h
170 hostname.o: /usr/include/netinet/in.h /usr/include/netdb.h /usr/include/ctype.h
171 hostname.o: /usr/include/strings.h
172 log.o: log.c /usr/include/stdio.h ../include/com_err.h
173 log.o: ../include/mit-sipb-copyright.h /usr/include/varargs.h
174 log.o: ../include/update.h /usr/include/krb.h /usr/include/des.h
175 checksum.o: checksum.c /usr/include/stdio.h /usr/include/sys/file.h
This page took 0.064895 seconds and 3 git commands to generate.