]> andersk Git - moira.git/commitdiff
AFS libraries are now used by afs.incr (AFSDIR should be changed!!!)
authorprobe <probe>
Sat, 30 May 1992 20:20:21 +0000 (20:20 +0000)
committerprobe <probe>
Sat, 30 May 1992 20:20:21 +0000 (20:20 +0000)
incremental/Makefile

index 431aa61867da43b784e5a3141d553c409c354af6..78cea225f99f7a3a8b38526978b608e0233831d0 100644 (file)
@@ -1,14 +1,21 @@
 # $Header$
 
+AFSDIR = /mit/afsdev/bld/dest
+AFSLIBS=$(AFSDIR)/lib/afs/libprot.a    $(AFSDIR)/lib/afs/libauth.a \
+       $(AFSDIR)/lib/libubik.a        $(AFSDIR)/lib/afs/util.a \
+       $(AFSDIR)/lib/afs/libcmd.a     $(AFSDIR)/lib/librxkad.a \
+       $(AFSDIR)/lib/afs/libsys.a     $(AFSDIR)/lib/librx.a \
+       $(AFSDIR)/lib/liblwp.a
+
 SRCS = afs.c ksrvtgt.c
-CFLAGS = -I../include -O
+DEBUG = -O
+CFLAGS = -I../include -I$(AFSDIR)/include $(DEBUG)
 LIBS = -L../lib -lmoira -lcom_err -lzephyr -lkrb -ldes
 
-
 all: afs.incr ksrvtgt
 
 afs.incr: afs.o
-       cc -o afs.incr afs.o ${LIBS}
+       cc -o afs.incr afs.o ${AFSLIBS} ${LIBS}
 
 ksrvtgt: ksrvtgt.o
        cc -o ksrvtgt ksrvtgt.o ${LIBS}
This page took 0.189588 seconds and 5 git commands to generate.