source: trunk/third/moira/clients/blanche/Makefile.in @ 23882

Revision 23882, 920 bytes checked in by broder, 15 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.
RevLine 
[23882]1# $Id: Makefile.in,v 1.7 2009-06-01 21:04:57 zacheiss Exp $
[23095]2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
[23882]11LIBTOOL=@LIBTOOL@
[23095]12LDFLAGS=@LDFLAGS@
13LIBS=../lib/libmrclient.a @LIBS@
14MR_LIBDEP=@MR_LIBDEP@
15INSTALL=@INSTALL@
16INSTALL_PROGRAM=@INSTALL_PROGRAM@
17
18srcdir=@srcdir@
19VPATH=@srcdir@
20SRCTOP=@top_srcdir@
[23882]21top_builddir=@top_builddir@
[23095]22BUILDTOP=../..
23prefix=@prefix@
24exec_prefix=@exec_prefix@
25bindir=@bindir@
26
[23882]27OBJS=blanche.lo
[23095]28
29TARGET=blanche
30
[23882]31.SUFFIXES: .lo
[23095]32
[23882]33.c.lo:
34        $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $<
35
[23095]36all: $(TARGET)
37
38clean:
[23882]39        $(LIBTOOL) --mode=clean rm -f $(OBJS) $(TARGET)
[23095]40
41cleandir distclean: clean
42        rm -f Makefile
43
44depend:
45
46install: all
[23882]47        $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) blanche $(DESTDIR)$(bindir)
[23095]48
49$(TARGET): $(OBJS) ../lib/libmrclient.a $(MR_LIBDEP)
[23882]50        $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.