Revision 24319,
1.4 KB
checked in by broder, 15 years ago
(diff) |
New Moira snapshot from SVN.
|
Line | |
---|
1 | # $Id: Makefile.in 3958 2010-01-05 21:27:04Z zacheiss $ |
---|
2 | |
---|
3 | SHELL=/bin/sh |
---|
4 | |
---|
5 | CC=@CC@ |
---|
6 | CPPFLAGS=@CPPFLAGS@ |
---|
7 | CFLAGS=@CFLAGS@ |
---|
8 | DEFS=@DEFS@ |
---|
9 | ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS) |
---|
10 | COMPILE_ET=@COMPILE_ET@ |
---|
11 | |
---|
12 | LIBTOOL=@LIBTOOL@ |
---|
13 | LDFLAGS=@LDFLAGS@ |
---|
14 | KLIBS=@KLIBS@ |
---|
15 | ALL_LDFLAGS=$(LDFLAGS) $(KLIBS) |
---|
16 | |
---|
17 | INSTALL=@INSTALL@ |
---|
18 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
19 | |
---|
20 | srcdir=@srcdir@ |
---|
21 | VPATH=@srcdir@ |
---|
22 | SRCTOP=@top_srcdir@ |
---|
23 | BUILDTOP=.. |
---|
24 | top_builddir=@top_builddir@ |
---|
25 | prefix=@prefix@ |
---|
26 | exec_prefix=@exec_prefix@ |
---|
27 | libdir=@libdir@ |
---|
28 | includedir=@includedir@ |
---|
29 | |
---|
30 | OBJS= critical.lo fixhost.lo fixname.lo \ |
---|
31 | hash.lo kname_unparse.lo kname_parse.lo krb_et.lo mr_access.lo mr_auth.lo \ |
---|
32 | mr_call.lo mr_connect.lo mr_et.lo mr_init.lo mr_ops.lo mr_query.lo \ |
---|
33 | nfsparttype.lo sq.lo strs.lo ureg_err.lo |
---|
34 | |
---|
35 | ET_H= mr_et.h krb_et.h ureg_err.h |
---|
36 | ET_C= mr_et.c krb_et.c ureg_err.c |
---|
37 | |
---|
38 | .c.lo: |
---|
39 | $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $< |
---|
40 | |
---|
41 | .SUFFIXES: .et .lo |
---|
42 | |
---|
43 | .et.c: |
---|
44 | $(COMPILE_ET) $< |
---|
45 | |
---|
46 | all: depend libmoira.la |
---|
47 | |
---|
48 | clean: |
---|
49 | $(LIBTOOL) --mode=clean rm -f $(OBJS) $(ET_H) $(ET_C) libmoira.la |
---|
50 | |
---|
51 | cleandir distclean: clean |
---|
52 | rm -f Makefile |
---|
53 | |
---|
54 | depend: $(ET_C) |
---|
55 | |
---|
56 | install: all |
---|
57 | $(LIBTOOL) --mode=install $(INSTALL) libmoira.la $(DESTDIR)$(libdir)/libmoira.la |
---|
58 | $(SRCTOP)/mkinstalldirs $(DESTDIR)$(includedir)/moira |
---|
59 | $(INSTALL) mr_et.h krb_et.h ureg_err.h $(DESTDIR)$(includedir)/moira |
---|
60 | |
---|
61 | libmoira.la: $(OBJS) |
---|
62 | $(LIBTOOL) --mode=link $(CC) $(ALL_LDFLAGS) -o $@ $(OBJS) -rpath $(libdir) -version-info 0:0:0 |
---|
Note: See
TracBrowser
for help on using the repository browser.