source:
trunk/third/moira/clients/chsh/Makefile.in
@
25198
Revision 25198, 1.0 KB checked in by jdreed, 13 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[25198] | 1 | # $Id: Makefile.in 4009 2010-06-22 05:50:47Z zacheiss $ |
[23095] | 2 | |
3 | SHELL=/bin/sh | |
4 | @SET_MAKE@ | |
5 | ||
6 | CC=@CC@ | |
[25198] | 7 | CPPFLAGS=@CPPFLAGS@ -DSHELLS_LIST=\"$(sysconfdir)/shells.moira\" |
[23095] | 8 | CFLAGS=@CFLAGS@ |
9 | DEFS=@DEFS@ | |
10 | ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS) | |
[23882] | 11 | LIBTOOL=@LIBTOOL@ |
[23095] | 12 | LDFLAGS=@LDFLAGS@ |
[24250] | 13 | LIBS=../lib/libmrclient.la @LIBS@ |
[23095] | 14 | MR_LIBDEP=@MR_LIBDEP@ |
15 | INSTALL=@INSTALL@ | |
16 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ | |
17 | ||
18 | srcdir=@srcdir@ | |
19 | VPATH=@srcdir@ | |
20 | SRCTOP=@top_srcdir@ | |
[23882] | 21 | top_builddir=@top_builddir@ |
[23095] | 22 | BUILDTOP=../.. |
23 | prefix=@prefix@ | |
24 | exec_prefix=@exec_prefix@ | |
25 | bindir=@bindir@ | |
[25198] | 26 | sysconfdir=@sysconfdir@ |
[23095] | 27 | |
28 | TARGET=chsh | |
29 | ||
[23882] | 30 | OBJS=$(TARGET).lo |
[23095] | 31 | |
[23882] | 32 | .SUFFIXES: .lo |
[23095] | 33 | |
[23882] | 34 | .c.lo: |
35 | $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $< | |
36 | ||
[23095] | 37 | all: $(TARGET) |
38 | ||
39 | clean: | |
[23882] | 40 | $(LIBTOOL) --mode=clean rm -f $(OBJS) $(TARGET) |
[23095] | 41 | |
42 | cleandir distclean: clean | |
43 | rm -f Makefile | |
44 | ||
45 | depend: | |
46 | ||
47 | install: 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.