]> git.wh0rd.org Git - dump.git/blob - rmt/Makefile.in
Fixed a bug causing dump to stop and report an error if an inode number in the exclud...
[dump.git] / rmt / Makefile.in
1 # $Id: Makefile.in,v 1.7 2002/07/29 12:00:34 stelian Exp $
2
3 top_srcdir=     @top_srcdir@
4 srcdir=         @srcdir@
5
6 @MCONFIG@
7
8 CFLAGS=         @CCOPTS@ -pipe $(OPT) $(GINC) $(INC) $(DEFS)
9 LDFLAGS=        @LDOPTS@ @STATIC@
10 LIBS=           $(GLIBS)
11 DEPLIBS=        ../compat/lib/libcompat.a
12
13 PROG=           rmt
14 SRCS=           rmt.c
15 OBJS=           rmt.o
16 MAN8=           rmt.8
17
18 all::           $(PROG) $(MAN8)
19
20 $(PROG):        $(OBJS) $(DEPLIBS)
21         $(LD) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(OBJS) $(LIBS)
22
23 $(MAN8):                rmt.8.in
24         sed -e "s|__DATE__|$(DATE)|g" \
25             -e "s|__VERSION__|$(VERSION)|g" $< > $@
26
27 install::       all
28         $(INSTALL) -d $(SBINDIR) $(MANDIR)
29         $(INSTALLBIN) $(PROG) $(SBINDIR)
30         $(INSTALLMAN) $(srcdir)/$(MAN8) $(MANDIR)
31
32 clean::
33         rm -f $(PROG) \#* *.s *.o *.a *~ core rmt.8
34
35 distclean::     clean
36         rm -f Makefile Makefile.old .depend 
37
38 # +++ Dependency line eater +++
39
40 # Makefile dependencies follow.  This must be the last section in
41 # the Makefile.in file
42 #
43