]> andersk Git - moira.git/blame - clients/mrtest/Makefile
fixed make install
[moira.git] / clients / mrtest / Makefile
CommitLineData
6e6374cb 1#
2# $Source$
3# $Header$
4#
5a34daa1 5# (c) Copyright 1988 by the Massachusetts Institute of Technology.
6# For copying and distribution information, please see the file
7# <mit-copyright.h>.
6e6374cb 8
9
10LIBS = ../rpc/libsms.a ../gdb/libgdb.a
11LLIBS= -L../lib -lkrb -ldes -lss -lcom_err -lm -lc
12
13COPTS= -O
14
15INCDIRS=-I../include
16
17CFLAGS= ${INCDIRS} ${COPTS}
18
19.SUFFIXES: .ct
20
21.ct.o: ; make_commands $*.ct
22
aadaf4e4 23all: smstest
6e6374cb 24
5a34daa1 25smstest: test_cmds.o test.o ${LIBS}
870e3698 26 rm -f smstest
5a34daa1 27 cc ${COPTS} -o $@ test_cmds.o test.o ${LIBS} ${LLIBS}
6e6374cb 28
29clean:
30 rm -f *.o core \#* *~ gmon.out
aadaf4e4 31 rm -f smstest
6e6374cb 32
c7fbdc33 33install: smstest
34 install -s smstest ${DESTDIR}/usr/etc/smstest
This page took 0.742847 seconds and 5 git commands to generate.