Revision 24319,
916 bytes
checked in by broder, 15 years ago
(diff) |
New Moira snapshot from SVN.
|
Line | |
---|
1 | # $Id: Makefile.in 3956 2010-01-05 20:56:56Z zacheiss $ |
---|
2 | |
---|
3 | SHELL=/bin/sh |
---|
4 | @SET_MAKE@ |
---|
5 | |
---|
6 | CC=@CC@ |
---|
7 | CPPFLAGS=@CPPFLAGS@ |
---|
8 | CFLAGS=@CFLAGS@ |
---|
9 | DEFS=@DEFS@ |
---|
10 | ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS) |
---|
11 | LIBTOOL=@LIBTOOL@ |
---|
12 | LDFLAGS=@LDFLAGS@ |
---|
13 | LIBS=../lib/libmrclient.la @LIBS@ |
---|
14 | MR_LIBDEP=@MR_LIBDEP@ |
---|
15 | INSTALL=@INSTALL@ |
---|
16 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
17 | |
---|
18 | srcdir=@srcdir@ |
---|
19 | VPATH=@srcdir@ |
---|
20 | SRCTOP=@top_srcdir@ |
---|
21 | top_builddir=@top_builddir@ |
---|
22 | BUILDTOP=../.. |
---|
23 | prefix=@prefix@ |
---|
24 | exec_prefix=@exec_prefix@ |
---|
25 | bindir=@bindir@ |
---|
26 | |
---|
27 | TARGET=chsh |
---|
28 | |
---|
29 | OBJS=$(TARGET).lo |
---|
30 | |
---|
31 | .SUFFIXES: .lo |
---|
32 | |
---|
33 | .c.lo: |
---|
34 | $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $< |
---|
35 | |
---|
36 | all: $(TARGET) |
---|
37 | |
---|
38 | clean: |
---|
39 | $(LIBTOOL) --mode=clean rm -f $(OBJS) $(TARGET) |
---|
40 | |
---|
41 | cleandir distclean: clean |
---|
42 | rm -f Makefile |
---|
43 | |
---|
44 | depend: |
---|
45 | |
---|
46 | install: all |
---|
47 | $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir) |
---|
48 | |
---|
49 | $(TARGET): $(OBJS) ../lib/libmrclient.la $(MR_LIBDEP) |
---|
50 | $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS) |
---|
Note: See
TracBrowser
for help on using the repository browser.