Revision 23882,
1.2 KB
checked in by broder, 16 years ago
(diff) |
In moira:
* New upstream release
* Build and install libmoira as a shared library. (Trac: #70)
* Drop most of the krb4 patch - it's been incorporated upstream.
* Install the Moira development headers by patching the relevant
Makefiles, instead of in the debian/rules file.
|
Rev | Line | |
---|
[23882] | 1 | # $Id: Makefile.in,v 1.7 2009-06-01 21:05:01 zacheiss Exp $ |
---|
[23095] | 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 | |
---|
[23882] | 12 | LIBTOOL=@LIBTOOL@ |
---|
| 13 | LDFLAGS=@LDFLAGS@ |
---|
| 14 | KLIBS=@KLIBS@ |
---|
| 15 | ALL_LDFLAGS=$(LDFLAGS) $(KLIBS) |
---|
| 16 | |
---|
| 17 | INSTALL=@INSTALL@ |
---|
| 18 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
| 19 | |
---|
[23095] | 20 | srcdir=@srcdir@ |
---|
| 21 | VPATH=@srcdir@ |
---|
| 22 | SRCTOP=@top_srcdir@ |
---|
| 23 | BUILDTOP=.. |
---|
[23882] | 24 | top_builddir=@top_builddir@ |
---|
| 25 | prefix=@prefix@ |
---|
| 26 | exec_prefix=@exec_prefix@ |
---|
| 27 | libdir=@libdir@ |
---|
[23095] | 28 | |
---|
[23882] | 29 | OBJS= critical.lo fixhost.lo fixname.lo \ |
---|
| 30 | hash.lo kname_unparse.lo kname_parse.lo krb_et.lo mr_access.lo mr_auth.lo \ |
---|
| 31 | mr_call.lo mr_connect.lo mr_et.lo mr_init.lo mr_ops.lo mr_query.lo \ |
---|
| 32 | nfsparttype.lo sq.lo strs.lo ureg_err.lo |
---|
[23095] | 33 | |
---|
| 34 | ET_H= mr_et.h krb_et.h ureg_err.h |
---|
| 35 | ET_C= mr_et.c krb_et.c ureg_err.c |
---|
| 36 | |
---|
[23882] | 37 | .c.lo: |
---|
| 38 | $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $< |
---|
[23095] | 39 | |
---|
[23882] | 40 | .SUFFIXES: .et .lo |
---|
[23095] | 41 | |
---|
| 42 | .et.c: |
---|
| 43 | $(COMPILE_ET) $< |
---|
| 44 | |
---|
[23882] | 45 | all: depend libmoira.la |
---|
[23095] | 46 | |
---|
| 47 | clean: |
---|
[23882] | 48 | $(LIBTOOL) --mode=clean rm -f $(OBJS) $(ET_H) $(ET_C) libmoira.a |
---|
[23095] | 49 | |
---|
| 50 | cleandir distclean: clean |
---|
| 51 | rm -f Makefile |
---|
| 52 | |
---|
| 53 | depend: $(ET_C) |
---|
| 54 | |
---|
| 55 | install: all |
---|
[23882] | 56 | $(LIBTOOL) --mode=install $(INSTALL) libmoira.la $(DESTDIR)$(libdir)/libmoira.la |
---|
[23095] | 57 | |
---|
[23882] | 58 | libmoira.la: $(OBJS) |
---|
| 59 | $(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.