]> andersk Git - moira.git/blame - reg_svr/Makefile
Oracle and Solaris/POSIX changes
[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
d1b2a10e 12CFLAGS= -O -I../include -I../lib
3bab08bf 13SRCS = requests.c reg_svr.c startreg.c
14OBJS = requests.o reg_svr.o
d20db3a0 15
16all: reg_svr startreg
17
48682c68 18reg_svr: $(OBJS)
19 cc ${CFLAGS} -o reg_svr $(OBJS) -L../lib \
d1b2a10e 20 ../server/libmoiraglue.a /mit/gdss/vax/libgdss.a \
21 -lmoira -lkadm -lkrb -ldes -lzephyr -lhesiod -lcom_err \
f58bc6c3 22 /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
989a2c2c 23
3bab08bf 24reg_svr.o requests.o: reg_svr.h
16ef81f8 25
f68f4a1d 26startreg: startreg.o
27 cc -o startreg startreg.o
a127ac0e 28
989a2c2c 29clean: /tmp
a127ac0e 30 rm -f a.out core *.o
d20db3a0 31 rm -f reg_svr startreg
32 rm -f unreg_user.c unreg_user
989a2c2c 33
34install: all
a7ef7615 35 install -c reg_svr ../bin/reg_svr
36 install -c startreg ../bin/startreg
3bab08bf 37
38depend:
39 mkdep ${CFLAGS} ${SRCS}
40
41# DO NOT DELETE THIS LINE -- mkdep uses it.
This page took 0.199979 seconds and 5 git commands to generate.