]> andersk Git - moira.git/blame - db/Makefile
make the install's -c
[moira.git] / db / Makefile
CommitLineData
51e7c423 1# $Header$
2
264217a0 3# (c) Copyright 1988 by the Massachusetts Institute of Technology.
4# For copying and distribution information, please see the file
5# <mit-copyright.h>.
6
7
51e7c423 8INGLIB=/usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
a8ffbb5d 9SRCS=newmoira.c tables.c imembers.c class.c
10OBJS=newmoira.o tables.o ../server/queries2.o
264217a0 11CFLAGS= -I../include -O
12.SUFFIXES: .qc
13
14.qc.c:
15 rm -f $*.c
16 /usr/rtingres/bin/eqc -p $*
17
eab653aa 18all: newmoira class imembers
f3a65d70 19
20imembers: imembers.o
21 cc -o imembers imembers.o ../lib/libsms.a ${INGLIB}
22imembers.c: imembers.qc
51e7c423 23
a8ffbb5d 24newmoira: ${OBJS}
25 cc -o newmoira ${OBJS} ${INGLIB}
51e7c423 26
a8ffbb5d 27newmoira.c: newmoira.qc
51e7c423 28
29tables.c: newdb db2tbls.awk
30 awk -f db2tbls.awk < newdb > tables.c
31
264217a0 32class: class.o
33 cc -o class class.o ../lib/libsms.a ${INGLIB}
34
35class.c: class.qc
36
a8ffbb5d 37clean:
38 rm -f *.o newmoira.c tables.c newmoira extractdb extract.c class class.c
39 rm -f imembers.c imembers
264217a0 40
a8ffbb5d 41install: newmoira
a7ef7615 42 install -c newmoira ../bin
264217a0 43
a8ffbb5d 44depend: ${SRCS}
45 mkdep ${CFLAGS} ${SRCS}
46
47# DO NOT DELETE THIS LINE -- mkdep uses it.
51e7c423 48
a8ffbb5d 49newmoira.o: newmoira.c ../include/mit-copyright.h /usr/include/stdio.h
50newmoira.o: ../server/query.h
51tables.o: tables.c
52imembers.o: imembers.c /usr/include/stdio.h ../include/sms.h
53imembers.o: ../include/sms_et.h
54class.o: class.c ../include/mit-copyright.h ../include/sms.h
55class.o: ../include/sms_et.h
This page took 0.064144 seconds and 5 git commands to generate.