]> andersk Git - moira.git/blob - reg_svr/Makefile
added copyright message
[moira.git] / reg_svr / Makefile
1 #
2 #       $Source$
3 #       $Author$
4 #       $Locker$
5 #       $Header$
6 #
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
11
12 CFLAGS= -O -I../include
13 OBJS = requests.o reg_svr.o
14
15 all: reg_svr startreg
16
17 reg_svr: $(OBJS)
18         cc ${CFLAGS} -o reg_svr $(OBJS) -L../lib \
19                 ../server/libsmsglue.a \
20                 -lsms -lcom_err -lkrb -ldes -lzephyr \
21                 /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
22
23 reg_svr.o requests.o: reg_svr.h ureg_proto.h
24
25 startreg: startreg.c
26         cc -o startreg startreg.c
27
28 clean: /tmp
29         rm -f a.out core *.o
30         rm -f reg_svr startreg
31         rm -f unreg_user.c unreg_user
32
33 install: all
34         install reg_svr ../bin/reg_svr
35         install startreg ../bin/startreg
This page took 1.435246 seconds and 5 git commands to generate.