Whamcloud - gitweb
Many files:
[tools/e2fsprogs.git] / debugfs / Makefile.in
1 #
2 # Standard e2fsprogs prologue....
3 #
4
5 srcdir = @srcdir@
6 top_srcdir = @top_srcdir@
7 VPATH = @srcdir@
8 top_builddir = ..
9 my_dir = debugfs
10 INSTALL = @INSTALL@
11
12 @MCONFIG@
13
14 PROGS=          debugfs
15 MANPAGES=       debugfs.8
16
17 MK_CMDS=        ../lib/ss/mk_cmds
18
19 DEBUG_OBJS= debug_cmds.o debugfs.o util.o ncheck.o icheck.o ls.o lsdel.o dump.o
20
21 SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \
22         $(srcdir)/ncheck.c $(srcdir)/icheck.c $(srcdir)/lsdel.c \
23         $(srcdir)/dump.c
24
25 LIBS= $(LIBEXT2FS) $(LIBSS) $(LIBCOM_ERR)  $(LIBUUID)
26 DEPLIBS= $(LIBEXT2FS) $(LIBSS) $(LIBCOM_ERR)  $(LIBUUID)
27
28 .c.o:
29         $(CC) -c $(ALL_CFLAGS) $< -o $@
30
31 all:: $(PROGS) $(MANPAGES)
32
33 debugfs: $(DEBUG_OBJS) $(DEPLIBS)
34         $(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS)
35
36 debug_cmds.c debug_cmds.h: debug_cmds.ct
37         $(MK_CMDS) $(srcdir)/debug_cmds.ct
38
39 debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in
40         $(SUBSTITUTE) $(srcdir)/debugfs.8.in debugfs.8
41
42 installdirs:
43         $(top_srcdir)/mkinstalldirs $(DESTDIR)$(usbindir) \
44                 $(DESTDIR)$(man8dir) $(DESTDIR)$(cat8dir)
45
46 install: $(PROGS) $(MANPAGES) installdirs
47         for i in $(PROGS); do \
48                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(sbindir)/$$i; \
49                 $(STRIP) $(DESTDIR)$(sbindir)/$$i; \
50         done
51         for i in $(MANPAGES); do \
52                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
53         done
54
55 uninstall:
56         for i in $(PROGS); do \
57                 $(RM) -f $(usbindir)/$$i; \
58         done
59         for i in $(MANPAGES); do \
60                 $(RM) -f $(man8dir)/$$i; \
61         done
62
63 clean:
64         $(RM) -f debugfs debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c core
65
66 mostlyclean: clean
67 distclean: clean
68         $(RM) -f debug_cmds.c .depend Makefile
69
70 # +++ Dependency line eater +++
71
72 # Makefile dependencies follow.  This must be the last section in
73 # the Makefile.in file
74 #
75 debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \
76  $(top_srcdir)/lib/ss/copyright.h $(top_builddir)/lib/ss/ss_err.h
77 debugfs.o: $(srcdir)/debugfs.c $(top_srcdir)/lib/et/com_err.h \
78  $(top_srcdir)/lib/ss/ss.h $(top_srcdir)/lib/ss/copyright.h \
79  $(top_builddir)/lib/ss/ss_err.h $(srcdir)/debugfs.h \
80  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
81  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
82  $(top_srcdir)/lib/uuid/uuid.h
83 util.o: $(srcdir)/util.c $(srcdir)/debugfs.h \
84  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
85  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
86  $(top_srcdir)/lib/ext2fs/bitops.h
87 ls.o: $(srcdir)/ls.c $(srcdir)/debugfs.h \
88  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
89  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
90  $(top_srcdir)/lib/ext2fs/bitops.h
91 ncheck.o: $(srcdir)/ncheck.c \
92  $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
93  $(top_srcdir)/lib/et/com_err.h \
94  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
95  $(top_srcdir)/lib/ext2fs/bitops.h
96 icheck.o: $(srcdir)/icheck.c $(srcdir)/debugfs.h \
97  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
98  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
99  $(top_srcdir)/lib/ext2fs/bitops.h
100 lsdel.o: $(srcdir)/lsdel.c $(srcdir)/debugfs.h \
101  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
102  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
103  $(top_srcdir)/lib/ext2fs/bitops.h
104 dump.o: $(srcdir)/dump.c $(srcdir)/debugfs.h \
105  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
106  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
107  $(top_srcdir)/lib/ext2fs/bitops.h
108