]> andersk Git - moira.git/blame_incremental - incremental/Makefile
Now rcp'ing with encryption, and actually checking that backup succeeded.
[moira.git] / incremental / Makefile
... / ...
CommitLineData
1# $Header$
2
3AFSDIR = /mit/afsdev/bld/dest
4AFSLIBS=$(AFSDIR)/lib/afs/libprot.a $(AFSDIR)/lib/afs/libauth.a \
5 $(AFSDIR)/lib/libubik.a $(AFSDIR)/lib/afs/util.a \
6 $(AFSDIR)/lib/librxkad.a $(AFSDIR)/lib/afs/libsys.a \
7 $(AFSDIR)/lib/librx.a $(AFSDIR)/lib/liblwp.a
8
9SRCS = afs.c ksrvtgt.c
10DEBUG = -O
11CFLAGS = -I../include -I$(AFSDIR)/include $(DEBUG)
12LIBS = -L../lib -lmoira -lzephyr -lgdb -lcom_err -lhesiod -lkrb -ldes
13
14all: afs.incr ksrvtgt
15
16afs.incr: afs.o
17 cc -o afs.incr afs.o ${AFSLIBS} ${LIBS}
18
19ksrvtgt: ksrvtgt.o
20 cc -o ksrvtgt ksrvtgt.o ${LIBS}
21
22clean:
23 rm -f *.o
24 rm -f afs.incr ksrvtgt
25
26install: all
27 install -c afs.incr ../bin
28
29depend:
30 mkdep ${CFLAGS} ${SRCS}
31
32# DO NOT DELETE THIS LINE -- mkdep uses it.
33
34afs.o: afs.c ../include/moira.h ../include/mr_et.h ../include/moira_site.h
35afs.o: ../include/mit-copyright.h /usr/include/sys/file.h
36ksrvtgt.o: ksrvtgt.c /usr/include/stdio.h /usr/include/sys/param.h
37ksrvtgt.o: /usr/include/machine/machparam.h /usr/include/sys/signal.h
38ksrvtgt.o: /usr/include/sys/types.h ../include/krb.h
39ksrvtgt.o: ../include/mit-copyright.h ../include/des.h
This page took 0.033482 seconds and 5 git commands to generate.