]> andersk Git - moira.git/blame - clients/mrtest/Makefile
Added support for verbose commandline options, changed usage message,
[moira.git] / clients / mrtest / Makefile
CommitLineData
6e6374cb 1#
2# $Source$
3# $Header$
4#
5
6
7LIBS = ../rpc/libsms.a ../gdb/libgdb.a
8LLIBS= -L../lib -lkrb -ldes -lss -lcom_err -lm -lc
9
10COPTS= -O
11
12INCDIRS=-I../include
13
14CFLAGS= ${INCDIRS} ${COPTS}
15
16.SUFFIXES: .ct
17
18.ct.o: ; make_commands $*.ct
19
aadaf4e4 20all: smstest
6e6374cb 21
aadaf4e4 22smstest: test_cmds.o test.o execute_cmd.o ${LIBS}
870e3698 23 rm -f smstest
aadaf4e4 24 cc ${COPTS} -o $@ test_cmds.o test.o execute_cmd.o \
25 ${LIBS} ${LLIBS}
6e6374cb 26
aadaf4e4 27execute_cmd.o: execute_cmd.c
28 cc -I/paris/source/4.3/athena.lib/ss -O -c execute_cmd.c
6e6374cb 29
30clean:
31 rm -f *.o core \#* *~ gmon.out
aadaf4e4 32 rm -f smstest
6e6374cb 33
7eef31e6 34install:
35 install smstest ../bin
This page took 0.055489 seconds and 5 git commands to generate.