d7aaa66c46d8505c1e631bfe3a73ce9c42533bb7
[openafs.git] / src / libacl / 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 TOP_OBJDIR=@TOP_OBJDIR@
12 srcdir=@srcdir@
13 VPATH=${srcdir}
14 prefix=@prefix@
15 exec_prefix=@exec_prefix@
16 bindir=@bindir@
17 sbindir=@sbindir@
18 libexecdir=@libexecdir@
19 libdir=@libdir@
20 includedir=@includedir@
21 mandir=@mandir@
22 afssrvbindir=@afssrvbindir@
23 afssrvsbindir=@afssrvsbindir@
24 afssrvlibexecdir=@afssrvlibexecdir@
25 COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
26 RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
27 TOP_SRCDIR=@TOP_SRCDIR@
28 SYS_NAME=@AFS_SYSNAME@
29
30 OPTIMIZE=-O
31
32 INCDIRS=-I${TOP_INCDIR} -I..
33 LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L..
34 LIBS= -lacl -lprot -lubik -lrx -llwp -lauth -lrxkad -lsys ${XLIBS}
35
36 CFLAGS = ${OPTIMIZE} ${INCDIRS} ${LDIRS} ${LIBS} ${XCFLAGS}
37
38 all: acltest
39
40 install: 
41
42 #
43 # Build targets
44 #
45 acltest: acltest.o
46         $(CC) -o acltest acltest.o $(CFLAGS)
47
48 acltest.o: acltest.c 
49
50 #
51 # Misc. targets
52 #
53 clean:
54         $(RM) -f *.o *.a acltest core
55
56 dest: 
57