]> andersk Git - moira.git/blame - gen/Makefile
added ingres error & deadlock detection
[moira.git] / gen / Makefile
CommitLineData
dfb56d6b 1# $Header$
2
3INGLIB=/usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
4CFLAGS= -I../include
5.SUFFIXES: .qc
6
7.qc.c:
8 rm -f $*.c
9 /usr/rtingres/bin/eqc -p $*
10
11all: passwd.gen aliases.gen hesiod.gen
12
13passwd.gen: passwd.o util.o
14 cc -o passwd.gen passwd.o util.o ${INGLIB}
15
16passwd.o: passwd.c
17
18aliases.gen: aliases.o util.o
19 cc -o aliases.gen aliases.o util.o ../lib/libsms.a ${INGLIB}
20
21aliases.o: aliases.c
22
23hesiod.gen: hesiod.o util.o
24 cc -o hesiod.gen hesiod.o util.o ../lib/libsms.a ${INGLIB}
25
26hesiod.o: hesiod.c
27
28clean:
29 rm -f *.o
30 rm -f passwd.c passwd.gen
31 rm -f aliases.c aliases.gen
32 rm -f hesiod.c hesiod.gen
33
34install: all
35 install passwd.gen ../bin
36 install aliases.gen ../bin
37 install hesiod.gen ../bin
This page took 0.101554 seconds and 5 git commands to generate.