]> andersk Git - moira.git/blame - dbck/Makefile
fixed typo
[moira.git] / dbck / Makefile
CommitLineData
4a3256d5 1# $Header$
2# Database consistency checker
3#
4# (c) Copyright 1988 by the Massachusetts Institute of Technology.
5# For copying and distribution information, please see the file
6# <mit-copyright.h>.
7
8
650d70fc 9.SUFFIXES:
10.SUFFIXES: .o .c .qc
11CFLAGS= -I../include -g
12
13OBJS = dbck.o fix.o phase1.o phase2.o phase3.o phase4.o
14
15EQLIBS = ../lib/libsms.a ../server/libsmsglue.a \
16 /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
17
18.qc.c:
19 /usr/rtingres/bin/eqc -p $*.qc
20
21all: dbck
22
23dbck: ${OBJS}
24 cc -o $@ ${CFLAGS} ${OBJS} ${EQLIBS}
25
26dbck.c: dbck.qc
27dbck.o: dbck.h dbck.c
28fix.o: fix.c dbck.h
29fix.c: fix.qc
30phase1.o: phase1.c dbck.h
31phase1.c: phase1.qc
32phase2.o: phase2.c
33phase2.c: phase2.qc
34phase3.o: phase3.c
35phase3.c: phase3.qc
36phase4.o: phase4.c
37phase4.c: phase4.qc
38
39
40clean:
41 rm -f *.o
42 rm -f dbck.c fix.c phase1.c phase2.c phase3.c phase4.c dbck
43 rm -f core *~
4a3256d5 44
45install: dbck
46 install dbck ../bin/dbck
This page took 0.056445 seconds and 5 git commands to generate.