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
RevLine 
[25198]1# $Id: Makefile.in 4009 2010-06-22 05:50:47Z zacheiss $
[23095]2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
[25198]7CPPFLAGS=@CPPFLAGS@ -DSHELLS_LIST=\"$(sysconfdir)/shells.moira\"
[23095]8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
[23882]11LIBTOOL=@LIBTOOL@
[23095]12LDFLAGS=@LDFLAGS@
[24250]13LIBS=../lib/libmrclient.la @LIBS@
[23095]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@
[25198]26sysconfdir=@sysconfdir@
[23095]27
28TARGET=chsh
29
[23882]30OBJS=$(TARGET).lo
[23095]31
[23882]32.SUFFIXES: .lo
[23095]33
[23882]34.c.lo:
35        $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $<
36
[23095]37all: $(TARGET)
38
39clean:
[23882]40        $(LIBTOOL) --mode=clean rm -f $(OBJS) $(TARGET)
[23095]41
42cleandir distclean: clean
43        rm -f Makefile
44
45depend:
46
47install: all
[23882]48        $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir)
[25198]49        $(INSTALL) shells.moira $(DESTDIR)$(sysconfdir)
[23095]50
[24250]51$(TARGET): $(OBJS) ../lib/libmrclient.la $(MR_LIBDEP)
[23882]52        $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
Note: See TracBrowser for help on using the repository browser.