]> andersk Git - moira.git/blob - db/Makefile
Initial revision
[moira.git] / db / Makefile
1 # $Header$
2
3 INGLIB=/usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
4 OBJS=newsms.o tables.o ../server/queries.o ../server/queries2.o
5
6 newsms: ${OBJS}
7         cc -o newsms ${OBJS} ${INGLIB}
8
9 newsms.c: newsms.qc
10         /usr/rtingres/bin/eqc -p newsms.qc
11
12 tables.c: newdb db2tbls.awk
13         awk -f db2tbls.awk < newdb > tables.c
14
15 clean:
16         rm -f *.o newsms.c tables.c newsms
17
18 install: newsms
19         install newsms ../bin
This page took 0.131145 seconds and 5 git commands to generate.