Whamcloud - gitweb
Enhance debugfs so that set_super_value can now set the wtime, mtime,
[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 DLOPEN_LIB = @DLOPEN_LIB@
12
13 @MCONFIG@
14
15 PROGS=          debugfs
16 MANPAGES=       debugfs.8
17
18 MK_CMDS=        _SS_DIR_OVERRIDE=../lib/ss ../lib/ss/mk_cmds
19
20 DEBUG_OBJS= debug_cmds.o debugfs.o util.o ncheck.o icheck.o ls.o \
21         lsdel.o dump.o set_fields.o logdump.o htree.o unused.o
22
23 SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \
24         $(srcdir)/ncheck.c $(srcdir)/icheck.c $(srcdir)/lsdel.c \
25         $(srcdir)/dump.c $(srcdir)/set_fields.c ${srcdir}/logdump.c \
26         $(srcdir)/htree.c $(srcdir)/unused.c
27
28 LIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \
29         $(LIBUUID) $(DLOPEN_LIB)
30 DEPLIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) $(DEPLIBUUID)
31
32 .c.o:
33         @echo " CC $<"
34         @$(CC) -c $(ALL_CFLAGS) $< -o $@
35
36 all:: $(PROGS) $(MANPAGES)
37
38 debugfs: $(DEBUG_OBJS) $(DEPLIBS)
39         @echo " LD $@"
40         @$(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS)
41
42 debug_cmds.c debug_cmds.h: debug_cmds.ct
43         @echo " MK_CMDS $@"
44         @$(MK_CMDS) $(srcdir)/debug_cmds.ct
45
46 debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in
47         @echo " SUBST $@"
48         @$(SUBSTITUTE_UPTIME) $(srcdir)/debugfs.8.in debugfs.8
49
50 installdirs:
51         @echo " MKINSTALLDIRS $(root_sbindir) $(man8dir)"
52         @$(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
53                 $(DESTDIR)$(man8dir)
54
55 install: $(PROGS) $(MANPAGES) installdirs
56         @for i in $(PROGS); do \
57                 echo "  INSTALL $(root_sbindir)/$$i"; \
58                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
59         done
60         @for i in $(MANPAGES); do \
61                 for j in $(COMPRESS_EXT); do \
62                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
63                 done; \
64                 echo "  INSTALL_DATA $(man8dir)/$$i"; \
65                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
66         done
67
68 install-strip: install
69         @for i in $(PROGS); do \
70                 echo "  STRIP $(root_sbindir)/$$i"; \
71                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
72         done
73
74 uninstall:
75         for i in $(PROGS); do \
76                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
77         done
78         for i in $(MANPAGES); do \
79                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
80         done
81
82 clean:
83         $(RM) -f debugfs debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c core
84
85 mostlyclean: clean
86 distclean: clean
87         $(RM) -f debug_cmds.c .depend Makefile $(srcdir)/TAGS \
88                 $(srcdir)/Makefile.in.old
89
90 # +++ Dependency line eater +++
91
92 # Makefile dependencies follow.  This must be the last section in
93 # the Makefile.in file
94 #
95 debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \
96  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h
97 debugfs.o: $(srcdir)/debugfs.c $(top_srcdir)/lib/et/com_err.h \
98  $(top_srcdir)/lib/ss/ss.h $(top_builddir)/lib/ss/ss_err.h \
99  $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
100  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
101  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
102  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/uuid/uuid.h \
103  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/version.h
104 util.o: $(srcdir)/util.c $(srcdir)/debugfs.h \
105  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
106  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
107  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
108  $(top_srcdir)/lib/ext2fs/bitops.h
109 ls.o: $(srcdir)/ls.c $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
110  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
111  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
112  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h
113 ncheck.o: $(srcdir)/ncheck.c $(srcdir)/debugfs.h \
114  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
115  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
116  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
117  $(top_srcdir)/lib/ext2fs/bitops.h
118 icheck.o: $(srcdir)/icheck.c $(srcdir)/debugfs.h \
119  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
120  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
121  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
122  $(top_srcdir)/lib/ext2fs/bitops.h
123 lsdel.o: $(srcdir)/lsdel.c $(srcdir)/debugfs.h \
124  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
125  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
126  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
127  $(top_srcdir)/lib/ext2fs/bitops.h
128 dump.o: $(srcdir)/dump.c $(srcdir)/debugfs.h \
129  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
130  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
131  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
132  $(top_srcdir)/lib/ext2fs/bitops.h
133 set_fields.o: $(srcdir)/set_fields.c $(srcdir)/debugfs.h \
134  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
135  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
136  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
137  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/uuid/uuid.h \
138  $(top_srcdir)/lib/e2p/e2p.h
139 logdump.o: $(srcdir)/logdump.c $(srcdir)/debugfs.h \
140  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
141  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
142  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
143  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/blkid/blkid.h \
144  $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/jfs_user.h \
145  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
146  $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/uuid/uuid.h
147 htree.o: $(srcdir)/htree.c $(srcdir)/debugfs.h \
148  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
149  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
150  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
151  $(top_srcdir)/lib/ext2fs/bitops.h