]> andersk Git - moira.git/blame - clients/chfn/Makefile.in
Build shared libmoira via libtool.
[moira.git] / clients / chfn / Makefile.in
CommitLineData
c00799b9 1# $Id$
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
a816420b 11LIBTOOL=@LIBTOOL@
c00799b9 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@
a816420b 21top_builddir=@top_builddir@
c00799b9 22BUILDTOP=../..
23prefix=@prefix@
24exec_prefix=@exec_prefix@
25bindir=@bindir@
26
27TARGET=chfn
28
a816420b 29OBJS=$(TARGET).lo
c00799b9 30
a816420b 31.SUFFIXES: .lo
32
33.c.lo:
34 $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $<
c00799b9 35
36all: $(TARGET)
37
38clean:
a816420b 39 $(LIBTOOL) --mode=clean rm -f $(OBJS) $(TARGET)
c00799b9 40
41cleandir distclean: clean
42 rm -f Makefile
43
44depend:
45
46install: all
a816420b 47 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir)
c00799b9 48
49$(TARGET): $(OBJS) ../lib/libmrclient.a $(MR_LIBDEP)
a816420b 50 $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
This page took 0.078742 seconds and 5 git commands to generate.