]> andersk Git - moira.git/blame - incremental/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / incremental / Makefile
CommitLineData
fb8809f4 1# $Header$
2
1a620ca8 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 \
14eaa783 6 $(AFSDIR)/lib/librxkad.a $(AFSDIR)/lib/afs/libsys.a \
7 $(AFSDIR)/lib/librx.a $(AFSDIR)/lib/liblwp.a
1a620ca8 8
c63e9dd3 9SRCS = afs.c ksrvtgt.c
1a620ca8 10DEBUG = -O
11CFLAGS = -I../include -I$(AFSDIR)/include $(DEBUG)
14eaa783 12LIBS = -L../lib -lmoira -lzephyr -lgdb -lcom_err -lhesiod -lkrb -ldes
fb8809f4 13
c63e9dd3 14all: afs.incr ksrvtgt
fb8809f4 15
16afs.incr: afs.o
1a620ca8 17 cc -o afs.incr afs.o ${AFSLIBS} ${LIBS}
fb8809f4 18
c63e9dd3 19ksrvtgt: ksrvtgt.o
20 cc -o ksrvtgt ksrvtgt.o ${LIBS}
21
fb8809f4 22clean:
23 rm -f *.o
c63e9dd3 24 rm -f afs.incr ksrvtgt
fb8809f4 25
26install: all
27 install -c afs.incr ../bin
c63e9dd3 28
29depend:
30 mkdep ${CFLAGS} ${SRCS}
31
32# DO NOT DELETE THIS LINE -- mkdep uses it.
c63e9dd3 33
2ce085d2 34afs.o: afs.c ../include/moira.h ../include/mr_et.h ../include/moira_site.h
c63e9dd3 35afs.o: ../include/mit-copyright.h /usr/include/sys/file.h
36ksrvtgt.o: ksrvtgt.c /usr/include/stdio.h /usr/include/sys/param.h
2ce085d2 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.075045 seconds and 5 git commands to generate.