]> andersk Git - moira.git/blame - reg_svr/Makefile
added copyright message
[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
48682c68 13OBJS = requests.o reg_svr.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
16ef81f8 23reg_svr.o requests.o: reg_svr.h ureg_proto.h
24
d20db3a0 25startreg: startreg.c
26 cc -o startreg startreg.c
a127ac0e 27
989a2c2c 28clean: /tmp
a127ac0e 29 rm -f a.out core *.o
d20db3a0 30 rm -f reg_svr startreg
31 rm -f unreg_user.c unreg_user
989a2c2c 32
33install: all
d20db3a0 34 install reg_svr ../bin/reg_svr
35 install startreg ../bin/startreg
This page took 0.112472 seconds and 5 git commands to generate.