]> andersk Git - moira.git/blob - clients/mrtest/Makefile
972812b00bddcc4c5ec643fa2fd79cfdadc086b9
[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 smsfinger
21
22 smstest: test_cmds.o test.o ${LIBS} 
23         cc ${COPTS} -o $@ test_cmds.o test.o ${LIBS} ${LLIBS}
24
25 smsfinger: smsfinger.o ${LIBS} 
26         cc ${COPTS} -o $@ smsfinger.o ${LIBS} ${LLIBS}
27
28 clean:
29         rm -f *.o core \#* *~ gmon.out
30         rm -f smstest smsfinger
31
32 install:
33         install smstest ../bin
34 # NOT /usr/athena!!!
35         install smsfinger ../bin
This page took 0.559096 seconds and 3 git commands to generate.