source: trunk/third/moira/incremental/afs/Makefile.in @ 24319

Revision 24319, 1.2 KB checked in by broder, 14 years ago (diff)
New Moira snapshot from SVN.
Line 
1# $Id: Makefile.in 3956 2010-01-05 20:56:56Z zacheiss $
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@
8AFS_CPPFLAGS=@AFS_CPPFLAGS@
9CFLAGS=@CFLAGS@
10DEFS=@DEFS@
11ALL_CFLAGS=$(CPPFLAGS) $(AFS_CPPFLAGS) $(CFLAGS) $(DEFS)
12LIBTOOL=@LIBTOOL@
13LDFLAGS=@LDFLAGS@
14AFS_LIBS=@AFS_LIBS@
15AFS_DIR=@AFS_DIR@
16LIBS=@LIBS@
17MR_LIBDEP=@MR_LIBDEP@
18INSTALL=@INSTALL@
19INSTALL_PROGRAM=@INSTALL_PROGRAM@
20
21srcdir=@srcdir@
22VPATH=@srcdir@
23SRCTOP=@top_srcdir@
24top_builddir=@top_builddir@
25BUILDTOP=../..
26mrbindir=@mrbindir@
27
28AFS_OBJS=afs.lo
29
30TARGET=afs.incr
31
32.SUFFIXES: .pc .lo
33
34.pc.c:
35        $(PRO_C) $(PRO_C_FLAGS) INAME=$<
36
37.c.lo:
38        $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $<
39
40all: $(TARGET)
41
42clean:
43        $(LIBTOOL) --mode=clean rm -f $(AFS_OBJS) $(TARGET)
44
45cleandir distclean: clean
46        rm -f Makefile
47
48depend:
49
50install:
51        $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) afs.incr $(DESTDIR)$(mrbindir)
52        @set -x; for p in afs_create.pl afs_nightly.pl afs_quota.pl afs_rename.pl afs_utils.pl; do $(INSTALL_PROGRAM) $$p $(DESTDIR)$(mrbindir); done
53
54afs.incr: $(AFS_OBJS) $(MR_LIBDEP)
55        $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(AFS_OBJS) $(AFS_LIBS) -lprot -lauth \
56        -lrxkad -ldes -lrx -llwp -lubik -lsys -laudit \
57        $(AFS_DIR)/lib/afs/util.a $(LIBS)
Note: See TracBrowser for help on using the repository browser.