make-install-support-for-transarc-and-prefix-style-universes-20010907
[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 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..
30 LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L..
31 LIBS= -lacl -lprot -lubik -lrx -llwp -lauth -lrxkad -lsys ${XLIBS}
32
33 CFLAGS = ${OPTIMIZE} ${INCDIRS} ${LDIRS} ${LIBS} ${XCFLAGS}
34
35 all: acltest
36
37 install: 
38
39 #
40 # Build targets
41 #
42 acltest: acltest.o
43         $(CC) -o acltest acltest.o $(CFLAGS)
44
45 acltest.o: acltest.c 
46
47 #
48 # Misc. targets
49 #
50 clean:
51         $(RM) -f *.o *.a acltest core
52
53 dest: 
54