]> andersk Git - moira.git/blob - incremental/afs/Makefile.in
break out of case statement, don't fall through.
[moira.git] / incremental / afs / Makefile.in
1 # $Id$
2
3 SHELL=/bin/sh
4 @SET_MAKE@
5
6 CC=@CC@
7 CPPFLAGS=@CPPFLAGS@
8 AFS_CPPFLAGS=@AFS_CPPFLAGS@
9 CFLAGS=@CFLAGS@
10 DEFS=@DEFS@
11 ALL_CFLAGS=$(CPPFLAGS) $(AFS_CPPFLAGS) $(CFLAGS) $(DEFS)
12 LDFLAGS=@LDFLAGS@
13 AFS_LIBS=@AFS_LIBS@
14 AFS_EXTRA_LIBS=@AFS_EXTRA_LIBS@
15 AFS_DIR=@AFS_DIR@
16 LIBS=@LIBS@
17 MR_LIBDEP=@MR_LIBDEP@
18 INSTALL=@INSTALL@
19 INSTALL_PROGRAM=@INSTALL_PROGRAM@
20
21 srcdir=@srcdir@
22 VPATH=@srcdir@
23 SRCTOP=@top_srcdir@
24 BUILDTOP=../..
25 mrbindir=@mrbindir@
26
27 AFS_OBJS=afs.o
28
29 TARGET=afs.incr
30
31 .SUFFIXES: .pc
32
33 .pc.c:
34         $(PRO_C) $(PRO_C_FLAGS) INAME=$<
35
36 .c.o:
37         $(CC) -c $(ALL_CFLAGS) $<
38
39 all: $(TARGET)
40
41 clean:
42         rm -f $(AFS_OBJS) $(TARGET)
43
44 cleandir distclean: clean
45         rm -f Makefile
46
47 depend:
48
49 install:
50         $(INSTALL_PROGRAM) afs.incr $(mrbindir)
51         @set -x; for p in afs_create.pl afs_nightly.pl afs_quota.pl afs_rename.pl afs_utils.pl; do $(INSTALL_PROGRAM) $$p $(mrbindir); done
52
53 afs.incr: $(AFS_OBJS) $(MR_LIBDEP)
54         $(CC) -o $@ $(LDFLAGS) $(AFS_OBJS) $(AFS_LIBS) -lprot -lauth \
55         -lrxkad -ldes -lrx -llwp -lubik -lsys -laudit \
56         $(AFS_DIR)/lib/afs/util.a $(AFS_EXTRA_LIBS) $(LIBS)
This page took 0.976812 seconds and 5 git commands to generate.