]> andersk Git - moira.git/blame_incremental - reg_svr/Makefile
Initial revision
[moira.git] / reg_svr / Makefile
... / ...
CommitLineData
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
12CFLAGS= -O -I../include
13OBJS = requests.o reg_svr.o admin_call.o
14
15all: reg_svr startreg
16
17reg_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
23reg_svr.o requests.o: reg_svr.h
24
25startreg: startreg.c
26 cc -o startreg startreg.c
27
28clean: /tmp
29 rm -f a.out core *.o
30 rm -f reg_svr startreg
31 rm -f unreg_user.c unreg_user
32
33install: all
34 install reg_svr ../bin/reg_svr
35 install startreg ../bin/startreg
This page took 0.0357690000000001 seconds and 5 git commands to generate.