]> andersk Git - moira.git/blame - afssync/Makefile
replaced WhoIsThis (probe)
[moira.git] / afssync / Makefile
CommitLineData
a04caf14 1# $Header$
2
3CFLAGS = -I/mit/afsdev/build/vax/include -I../include -O
4
5OBJS = prprocs.o prutils.o utils.o ubik.o
f00f36ed 6LIBS= -L../lib -lmoira -lcom_err \
a04caf14 7 /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
8
9.SUFFIXES: .qc
10
11.qc.c:
12 rm -f $*.c
13 /usr/rtingres/bin/eqc -p $*
14
15all: sync resync
16
17sync: sync.o $(OBJS)
18 cc -o sync sync.o $(OBJS) $(LIBS)
19sync.c: sync.qc
20
21resync: resync.o $(OBJS)
22 cc -o resync resync.o $(OBJS) $(LIBS)
23resync.c: resync.qc
24
25prnewuser: prnewuser.o $(OBJS)
26 cc -o prnewuser prnewuser.o $(OBJS)
27
28prnewlist: prnewlist.o $(OBJS)
29 cc -o prnewlist prnewlist.o $(OBJS)
30
31startsync: startsync.o
32 cc -o startsync startsync.o
33
34
35clean:
36 rm -f *.o resync.c sync.c resync sync startsync prnewlist prnewuser
This page took 2.128648 seconds and 5 git commands to generate.