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