]> andersk Git - moira.git/blame_incremental - clients/mrtest/Makefile
Added support for verbose commandline options, changed usage message,
[moira.git] / clients / mrtest / Makefile
... / ...
CommitLineData
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
20all: smstest
21
22smstest: test_cmds.o test.o execute_cmd.o ${LIBS}
23 rm -f smstest
24 cc ${COPTS} -o $@ test_cmds.o test.o execute_cmd.o \
25 ${LIBS} ${LLIBS}
26
27execute_cmd.o: execute_cmd.c
28 cc -I/paris/source/4.3/athena.lib/ss -O -c execute_cmd.c
29
30clean:
31 rm -f *.o core \#* *~ gmon.out
32 rm -f smstest
33
34install:
35 install smstest ../bin
This page took 0.045618 seconds and 5 git commands to generate.