]> andersk Git - moira.git/blob - db/Makefile
6e86796ff4e3e6f272d692d0360e721e9a14d1f8
[moira.git] / db / Makefile
1 # $Header$
2
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
8 INGLIB=/usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
9 SRCS=newmoira.c tables.c imembers.c class.c tables_sql.c
10 OBJS=newmoira.o tables.o ../server/queries2.o tables_sql.o
11 CFLAGS= -I../include -O
12 .SUFFIXES: .qc
13
14 .qc.c: 
15         rm -f $*.c
16         /usr/rtingres/bin/eqc -p $*
17
18 all: newmoira class imembers
19
20 imembers: imembers.o
21         cc -o imembers imembers.o ../lib/libmoira.a ${INGLIB}
22 imembers.c: imembers.qc
23
24 newmoira: ${OBJS}
25         cc -o newmoira ${OBJS} ${INGLIB}
26
27 newmoira.c: newmoira.qc
28
29 tables.c: newdb db2tbls.awk
30         awk -f db2tbls.awk < newdb > tables.c
31
32 tables_sql.c: newdb.sql db2tbls_sql.awk
33         awk -f db2tbls_sql.awk < newdb.sql > tables_sql.c
34
35 class: class.o
36         cc -o class class.o ../lib/libmoira.a ${INGLIB}
37
38 class.c: class.qc
39
40 clean:
41         rm -f *.o newmoira.c tables.c newmoira extractdb extract.c class class.c
42         rm -f imembers.c imembers
43         rm -f tables_sql.c
44
45 install: newmoira
46         install -c newmoira ../bin
47
48 depend: ${SRCS}
49         mkdep ${CFLAGS} ${SRCS}
50
51 # DO NOT DELETE THIS LINE -- mkdep uses it.
52
53 newmoira.o: newmoira.c ../include/mit-copyright.h /usr/include/stdio.h
54 newmoira.o: ../server/query.h
55 tables.o: tables.c
56 tables_sql.o: tables_sql.c
57 imembers.o: imembers.c /usr/include/stdio.h ../include/moira.h
58 imembers.o: ../include/mr_et.h
59 class.o: class.c ../include/mit-copyright.h ../include/moira.h
60 class.o: ../include/mr_et.h
This page took 0.035137 seconds and 3 git commands to generate.