source: trunk/third/moira/clients/chsh/Makefile.in @ 25198

Revision 25198, 1.0 KB checked in by jdreed, 13 years ago (diff)
In moira: * Snapshot moira@r4042 (6/28/11) * Update version number to include moira revision number
Line 
1# $Id: Makefile.in 4009 2010-06-22 05:50:47Z zacheiss $
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@ -DSHELLS_LIST=\"$(sysconfdir)/shells.moira\"
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11LIBTOOL=@LIBTOOL@
12LDFLAGS=@LDFLAGS@
13LIBS=../lib/libmrclient.la @LIBS@
14MR_LIBDEP=@MR_LIBDEP@
15INSTALL=@INSTALL@
16INSTALL_PROGRAM=@INSTALL_PROGRAM@
17
18srcdir=@srcdir@
19VPATH=@srcdir@
20SRCTOP=@top_srcdir@
21top_builddir=@top_builddir@
22BUILDTOP=../..
23prefix=@prefix@
24exec_prefix=@exec_prefix@
25bindir=@bindir@
26sysconfdir=@sysconfdir@
27
28TARGET=chsh
29
30OBJS=$(TARGET).lo
31
32.SUFFIXES: .lo
33
34.c.lo:
35        $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $<
36
37all: $(TARGET)
38
39clean:
40        $(LIBTOOL) --mode=clean rm -f $(OBJS) $(TARGET)
41
42cleandir distclean: clean
43        rm -f Makefile
44
45depend:
46
47install: all
48        $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir)
49        $(INSTALL) shells.moira $(DESTDIR)$(sysconfdir)
50
51$(TARGET): $(OBJS) ../lib/libmrclient.la $(MR_LIBDEP)
52        $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
Note: See TracBrowser for help on using the repository browser.