]> andersk Git - moira.git/blame - reg_svr/Makefile
fixed up include files
[moira.git] / reg_svr / Makefile
CommitLineData
989a2c2c 1#
2# $Source$
3# $Author$
4# $Locker$
5# $Header$
6#
0a5ff702 7# (c) Copyright 1988 by the Massachusetts Institute of Technology.
8# For copying and distribution information, please see the file
9# <mit-copyright.h>.
10
989a2c2c 11
d20db3a0 12CFLAGS= -O -I../include
c2863db4 13OBJS = requests.o reg_svr.o admin_call.o admin_err.o
d20db3a0 14
15all: reg_svr startreg
16
48682c68 17reg_svr: $(OBJS)
18 cc ${CFLAGS} -o reg_svr $(OBJS) -L../lib \
d20db3a0 19 ../server/libsmsglue.a \
857a2dd9 20 -lsms -lcom_err -lkrb -ldes -lzephyr \
f58bc6c3 21 /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
989a2c2c 22
c2863db4 23reg_svr.o requests.o: reg_svr.h admin_err.h
24
25admin_err.c admin_err.h: admin_err.et
26 ../et/compile_et admin_err.et
16ef81f8 27
f68f4a1d 28startreg: startreg.o
29 cc -o startreg startreg.o
a127ac0e 30
989a2c2c 31clean: /tmp
a127ac0e 32 rm -f a.out core *.o
d20db3a0 33 rm -f reg_svr startreg
34 rm -f unreg_user.c unreg_user
989a2c2c 35
36install: all
d20db3a0 37 install reg_svr ../bin/reg_svr
38 install startreg ../bin/startreg
This page took 0.191941 seconds and 5 git commands to generate.