make-install-support-for-transarc-and-prefix-style-universes-20010907
[openafs.git] / src / log / test / Makefile.in
1 # Copyright 2000, International Business Machines Corporation and others.
2 # All Rights Reserved.
3
4 # This software has been released under the terms of the IBM Public
5 # License.  For details, see the LICENSE file in the top-level source
6 # directory or online at http://www.openafs.org/dl/license10.html
7
8 DEST=@DEST@
9 TOP_INCDIR=@TOP_INCDIR@
10 TOP_LIBDIR=@TOP_LIBDIR@
11 prefix=@prefix@
12 exec_prefix=@exec_prefix@
13 bindir=@bindir@
14 sbindir=@sbindir@
15 libexecdir=@libexecdir@
16 libdir=@libdir@
17 includedir=@includedir@
18 mandir=@mandir@
19 afssrvbindir=@afssrvbindir@
20 afssrvsbindir=@afssrvsbindir@
21 afssrvlibexecdir=@afssrvlibexecdir@
22 COMPILE_ET=${TOP_SRCDIR}/comerr/compile_et
23 RXGEN=${TOP_SRCDIR}/rxgen/rxgen
24 TOP_SRCDIR=@TOP_SRCDIR@
25 SYS_NAME=@AFS_SYSNAME@
26
27 OPTIMIZE=-O
28
29 INCDIRS=-I${TOP_INCDIR} -I.. -I${TOP_INCDIR}/afs
30 LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L..
31 LIBS= -lauth -lrxkad -ldes -lsys -lrx -llwp -lcmd -lafsutil ${XLIBS}
32
33 CFLAGS = ${OPTIMIZE} ${INCDIRS} ${LDIRS} ${LIBS} ${XCFLAGS}
34
35 all: testlog gettoktest
36
37 install:  
38
39 #
40 # Build targets
41 #
42 testlog: testlog.o 
43         ${CC} -o testlog testlog.o ${CFLAGS}
44
45 gettoktest: gettoktest.o 
46         ${CC} -o gettoktest gettoktest.o ${CFLAGS}
47
48 #
49 # Misc. targets
50
51 clean:  
52         $(RM) -f *.o testlog gettoktest core
53
54 dest:  
55