]> andersk Git - moira.git/blob - afssync/Makefile
sms -> moira
[moira.git] / afssync / Makefile
1 # $Header$
2
3 CFLAGS = -I/mit/afsdev/build/vax/include -I../include -O
4
5 OBJS = prprocs.o prutils.o utils.o ubik.o
6 LIBS= -L../lib -lmoira -lcom_err \
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
15 all: sync resync
16
17 sync: sync.o $(OBJS)
18         cc -o sync sync.o $(OBJS) $(LIBS)
19 sync.c: sync.qc
20
21 resync: resync.o $(OBJS)
22         cc -o resync resync.o $(OBJS) $(LIBS)
23 resync.c: resync.qc
24
25 prnewuser: prnewuser.o $(OBJS)
26         cc -o prnewuser prnewuser.o $(OBJS)
27
28 prnewlist: prnewlist.o $(OBJS)
29         cc -o prnewlist prnewlist.o $(OBJS)
30
31 startsync: startsync.o
32         cc -o startsync startsync.o
33
34
35 clean:
36         rm -f *.o resync.c sync.c resync sync startsync prnewlist prnewuser
This page took 0.040132 seconds and 5 git commands to generate.