]> andersk Git - moira.git/blob - dcm/Makefile
wait a minute after deadlock before trying again to update state in DB
[moira.git] / dcm / Makefile
1 #       $Source$
2 #       $Author$
3 #       $Header$
4 #
5 # (c) Copyright 1988 by the Massachusetts Institute of Technology.
6 # For copying and distribution information, please see the file
7 # <mit-copyright.h>.
8
9 SMS_DIR = ..
10 INGRES_DIR = /usr/rtingres
11 UPDATE_DIR = ${SMS_DIR}/update
12
13 INCDIR = -I${SMS_DIR}/include
14 CFLAGS = ${INCDIR} -g
15 LDFLAGS = -L${SMS_DIR}/lib -L${SMS_DIR}/server
16
17 QLIBS= ${INGRES_DIR}/lib/libqlib ${INGRES_DIR}/lib/compatlib
18
19 # Libraries that talk to the SMS server:
20 SERVER_LIBS = -lsmsglue -lsms -lgdb -lzephyr -lkrb -ldes -lcom_err $(QLIBS)
21
22 DCM_SRCS = dcm.c utils.c
23 DCM_OBJS = dcm.o utils.o ../update/sms_update.o
24
25
26 all: dcm startdcm
27
28 dcm: ${DCM_OBJS}
29         rm -f $@
30         ${CC} ${LDFLAGS} -o $@ ${DCM_OBJS} ${SERVER_LIBS}
31
32 startdcm: startdcm.o
33         ${CC} ${LDFLAGS} -o startdcm startdcm.o
34
35 clean: 
36         rm -f *.o core *~
37         rm -f dcm startdcm .saber
38
39 install: dcm startdcm
40         install dcm ${SMS_DIR}/bin/dcm
41         install startdcm ${SMS_DIR}/bin/startdcm
42
43 lint:
44         lint ${INCDIR} ${DCM_SRCS} | grep -v "possible pointer alignment"
45
46
47 .saber: Makefile
48         rm -rf $@
49         echo "setopt(\"load_options\", \"${CFLAGS} ${LDFLAGS}\");" >$@
50         echo "#define DCM_SRCS \"${DCM_SRCS} ${SMS_UPDATE}\"" >>$@
51         echo "#define FOO_SRCS \"${FOO_SRCS}\"" >>$@
52         echo "#define GLUE_LIBS \"${GLUE_LIBS}\"" >>$@
53         echo "#define SERVER_LIBS \"${SERVER_LIBS}\"" >>$@
54         echo "suppress(285); " >>$@
55
This page took 0.040603 seconds and 5 git commands to generate.