]> andersk Git - moira.git/blame - incremental/Makefile
Fixed the volume prefixing for type SYSTEM volumes
[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 \
6 $(AFSDIR)/lib/afs/libcmd.a $(AFSDIR)/lib/librxkad.a \
7 $(AFSDIR)/lib/afs/libsys.a $(AFSDIR)/lib/librx.a \
8 $(AFSDIR)/lib/liblwp.a
9
c63e9dd3 10SRCS = afs.c ksrvtgt.c
1a620ca8 11DEBUG = -O
12CFLAGS = -I../include -I$(AFSDIR)/include $(DEBUG)
2ce085d2 13LIBS = -L../lib -lmoira -lcom_err -lzephyr -lkrb -ldes
fb8809f4 14
c63e9dd3 15all: afs.incr ksrvtgt
fb8809f4 16
17afs.incr: afs.o
1a620ca8 18 cc -o afs.incr afs.o ${AFSLIBS} ${LIBS}
fb8809f4 19
c63e9dd3 20ksrvtgt: ksrvtgt.o
21 cc -o ksrvtgt ksrvtgt.o ${LIBS}
22
fb8809f4 23clean:
24 rm -f *.o
c63e9dd3 25 rm -f afs.incr ksrvtgt
fb8809f4 26
27install: all
28 install -c afs.incr ../bin
c63e9dd3 29
30depend:
31 mkdep ${CFLAGS} ${SRCS}
32
33# DO NOT DELETE THIS LINE -- mkdep uses it.
c63e9dd3 34
2ce085d2 35afs.o: afs.c ../include/moira.h ../include/mr_et.h ../include/moira_site.h
c63e9dd3 36afs.o: ../include/mit-copyright.h /usr/include/sys/file.h
37ksrvtgt.o: ksrvtgt.c /usr/include/stdio.h /usr/include/sys/param.h
2ce085d2 38ksrvtgt.o: /usr/include/machine/machparam.h /usr/include/sys/signal.h
39ksrvtgt.o: /usr/include/sys/types.h ../include/krb.h
40ksrvtgt.o: ../include/mit-copyright.h ../include/des.h
This page took 0.093685 seconds and 5 git commands to generate.