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