From: probe Date: Mon, 8 Jun 1992 17:27:21 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release77~536 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/ebe5e0d900ff84cbc25b09b089da0beea142bf86 *** empty log message *** --- diff --git a/afssync/Makefile b/afssync/Makefile index 546a5848..3da669b6 100644 --- a/afssync/Makefile +++ b/afssync/Makefile @@ -1,10 +1,12 @@ # $Header$ AFSDIR = /mit/afsdev/bld/dest -CFLAGS = -I$(AFSDIR)/include -I$(AFSDIR)/include/afs -I../include -O +CFLAGS = -I$(AFSDIR)/include -I$(AFSDIR)/include/afs -I../include \ + -I/usr/athena/include -O +LDFLAGS= -L/usr/athena/lib -OBJS= ptutils.o ptprocs.o utils.o ubik.o -LIBS= -L../lib -lmoira -lcom_err -lkrb -ldes \ +OBJS= ptutils.o utils.o ubik.o +LIBS= -L../lib $(LDFLAGS) -lmoira -lcom_err -lkrb -ldes \ /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib AFSLIBS=$(AFSDIR)/lib/afs/libprot.a $(AFSDIR)/lib/afs/libauth.a \ @@ -18,14 +20,22 @@ AFSLIBS=$(AFSDIR)/lib/afs/libprot.a $(AFSDIR)/lib/afs/libauth.a \ rm -f $*.c /usr/rtingres/bin/eqc -p $* -all: sync ptdump +all: sync ptdump migrate pt_util sync: sync.o $(OBJS) $(CC) -o sync sync.o $(OBJS) $(AFSLIBS) $(LIBS) sync.c: sync.qc ptdump: ptdump.o - cc -o ptdump ptdump.o $(AFSLIBS) -lkrb -ldes + cc -o ptdump ptdump.o $(AFSLIBS) $(LDFLAGS) -ldes + +pt_util: pt_util.o $(OBJS) + cc -o pt_util pt_util.o $(OBJS) $(AFSLIBS) $(LDFLAGS) -lcom_err -ldes + +migrate: migrate.o + cc -o migrate migrate.o $(LIBS) + +migrate.c: migrate.qc clean: - rm -f *.o resync.c sync.c resync sync startsync prnewlist prnewuser + rm -f *.o sync.c sync migrate.c migrate pt_util ptdump