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