Whamcloud - gitweb
LU-11545 debugfs: allow <inode> for ncheck
[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 MKDIR_P = @MKDIR_P@
12
13 @MCONFIG@
14
15 PROGS=          debugfs
16 MANPAGES=       debugfs.8
17
18 MK_CMDS=        _SS_DIR_OVERRIDE=$(srcdir)/../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 e2freefrag.o \
22         filefrag.o extent_cmds.o extent_inode.o zap.o create_inode.o \
23         quota.o xattrs.o journal.o revoke.o recovery.o do_journal.o
24
25 RO_DEBUG_OBJS= ro_debug_cmds.o ro_debugfs.o util.o ncheck.o icheck.o ls.o \
26         lsdel.o logdump.o htree.o e2freefrag.o filefrag.o extent_cmds.o \
27         extent_inode.o quota.o xattrs.o
28
29 SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \
30         $(srcdir)/ncheck.c $(srcdir)/icheck.c $(srcdir)/lsdel.c \
31         $(srcdir)/dump.c $(srcdir)/set_fields.c ${srcdir}/logdump.c \
32         $(srcdir)/htree.c $(srcdir)/unused.c ${srcdir}/../misc/e2freefrag.c \
33         $(srcdir)/filefrag.c $(srcdir)/extent_inode.c $(srcdir)/zap.c \
34         $(srcdir)/../misc/create_inode.c $(srcdir)/xattrs.c $(srcdir)/quota.c \
35         $(srcdir)/journal.c $(srcdir)/../e2fsck/revoke.c \
36         $(srcdir)/../e2fsck/recovery.c $(srcdir)/do_journal.c
37
38 LIBS= $(LIBSUPPORT) $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \
39         $(LIBUUID) $(LIBMAGIC) $(SYSLIBS)
40 DEPLIBS= $(DEPLIBSUPPORT) $(LIBEXT2FS) $(LIBE2P) $(DEPLIBSS) $(DEPLIBCOM_ERR) \
41         $(DEPLIBBLKID) $(DEPLIBUUID)
42
43 STATIC_LIBS= $(STATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) $(STATIC_LIBSS) \
44         $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) $(STATIC_LIBUUID) \
45         $(STATIC_LIBE2P) $(LIBMAGIC) $(SYSLIBS)
46 STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBSS) \
47                 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBUUID) \
48                 $(DEPSTATIC_LIBE2P)
49
50 # This nastiness is needed because of jfs_user.h hackery; when we finally
51 # clean up this mess, we should be able to drop it
52 LOCAL_CFLAGS = -I$(srcdir)/../e2fsck -DDEBUGFS
53 DEPEND_CFLAGS = -I$(srcdir)
54 @LFSCK_CMT@LUSTRE_INC=-I @LUSTRE@/lustre/include -I @LUSTRE@/include -I @LUSTRE@/libcfs/include -Wall
55
56 .c.o:
57         $(E) "  CC $<"
58         $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
59         $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
60         $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $<
61
62 all:: $(PROGS) $(MANPAGES)
63
64 debugfs: $(DEBUG_OBJS) $(DEPLIBS)
65         $(E) "  LD $@"
66         $(Q) $(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS)
67
68 debugfs.static: $(DEBUG_OBJS) $(STATIC_DEPLIBS)
69         $(E) "  LD $@"
70         $(Q) $(CC) $(LDFLAGS_STATIC) -o debugfs.static $(DEBUG_OBJS) \
71                 $(STATIC_LIBS) $(READLINE_LIB)
72
73 debugfs.static-libs: $(DEBUG_OBJS) $(STATIC_DEPLIBS)
74         $(E) "  LD $@"
75         $(Q) $(CC) -o debugfs.static-libs $(DEBUG_OBJS) \
76                 $(STATIC_LIBS) $(READLINE_LIB)
77
78 rdebugfs: $(RO_DEBUG_OBJS) $(DEPLIBS)
79         $(E) "  LD $@"
80         $(Q) $(CC) $(ALL_LDFLAGS) -o rdebugfs $(RO_DEBUG_OBJS) $(LIBS)
81
82 debug_cmds.c debug_cmds.h: debug_cmds.ct
83         $(E) "  MK_CMDS $@"
84         $(Q) $(MK_CMDS) $(srcdir)/debug_cmds.ct
85
86 extent_cmds.c extent_cmds.h: extent_cmds.ct
87         $(E) "  MK_CMDS $@"
88         $(Q) $(MK_CMDS) $(srcdir)/extent_cmds.ct
89
90 ro_debug_cmds.c ro_debug_cmds.h: ro_debug_cmds.ct
91         $(E) "  MK_CMDS $@"
92         $(Q) $(MK_CMDS) $(srcdir)/ro_debug_cmds.ct
93
94 ro_debugfs.o: debugfs.c
95         $(E) "  CC $@"
96         $(Q) $(CC) -c $(ALL_CFLAGS) $< -DREAD_ONLY -o $@
97
98 e2freefrag.o: $(srcdir)/../misc/e2freefrag.c
99         $(E) "  CC $@"
100         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) $< -o $@
101
102 recovery.o: $(srcdir)/../e2fsck/recovery.c
103         $(E) "  CC $@"
104         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
105                 $(srcdir)/../e2fsck/recovery.c -o $@
106
107 revoke.o: $(srcdir)/../e2fsck/revoke.c
108         $(E) "  CC $@"
109         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
110                 $(srcdir)/../e2fsck/revoke.c -o $@
111
112 create_inode.o: $(srcdir)/../misc/create_inode.c
113         $(E) "  CC $@"
114         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
115                  $(srcdir)/../misc/create_inode.c -o $@
116
117 debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in
118         $(E) "  SUBST $@"
119         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/debugfs.8.in debugfs.8
120
121 installdirs:
122         $(E) "  MKDIR_P $(root_sbindir) $(man8dir)"
123         $(Q) $(MKDIR_P) $(DESTDIR)$(root_sbindir) \
124                 $(DESTDIR)$(man8dir)
125
126 install: $(PROGS) $(MANPAGES) installdirs
127         $(Q) for i in $(PROGS); do \
128                 echo "  INSTALL $(root_sbindir)/$$i"; \
129                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
130         done
131         $(Q) for i in $(MANPAGES); do \
132                 for j in $(COMPRESS_EXT); do \
133                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
134                 done; \
135                 echo "  INSTALL_DATA $(man8dir)/$$i"; \
136                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
137         done
138
139 install-strip: install
140         $(Q) for i in $(PROGS); do \
141                 echo "  STRIP $(root_sbindir)/$$i"; \
142                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
143         done
144
145 uninstall:
146         for i in $(PROGS); do \
147                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
148         done
149         for i in $(MANPAGES); do \
150                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
151         done
152
153 clean::
154         $(RM) -f $(PROGS) debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c \
155                 extent_cmds.c ro_debug_cmds.c core rdebugfs debugfs.static \
156                 debugfs.static-libs tst_set_fields
157
158 mostlyclean: clean
159 distclean: clean
160         $(RM) -f debug_cmds.c .depend Makefile $(srcdir)/TAGS \
161                 $(srcdir)/Makefile.in.old $(srcdir)/recovery.c \
162                 $(srcdir)/revoke.c
163
164 tst_set_fields: set_fields.c util.c
165         $(E) "  LD $@"
166         $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(SYSLIBS) -DUNITTEST \
167                 -o tst_set_fields $(srcdir)/set_fields.c $(srcdir)/util.c $(LIBS)
168
169 fullcheck check:: tst_set_fields
170         $(TESTENV) ./tst_set_fields
171
172 # +++ Dependency line eater +++
173
174 # Makefile dependencies follow.  This must be the last section in
175 # the Makefile.in file
176 #
177 debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \
178  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h
179 debugfs.o: $(srcdir)/debugfs.c $(top_builddir)/lib/config.h \
180  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
181  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
182  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
183  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
184  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
185  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
186  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
187  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
188  $(top_srcdir)/lib/support/dqblk_v2.h \
189  $(top_srcdir)/lib/support/quotaio_tree.h $(top_srcdir)/version.h \
190  $(srcdir)/../e2fsck/jfs_user.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
191  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
192  $(top_srcdir)/lib/ext2fs/compiler.h $(top_srcdir)/lib/support/plausible.h
193 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
194  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ss/ss.h \
195  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
196  $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
197  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
198  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
199  $(top_builddir)/lib/ext2fs/ext2_err.h \
200  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
201  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
202  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
203  $(top_srcdir)/lib/support/dqblk_v2.h \
204  $(top_srcdir)/lib/support/quotaio_tree.h
205 ls.o: $(srcdir)/ls.c $(top_builddir)/lib/config.h \
206  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
207  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
208  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
209  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
210  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
211  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
212  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
213  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
214  $(top_srcdir)/lib/support/dqblk_v2.h \
215  $(top_srcdir)/lib/support/quotaio_tree.h
216 ncheck.o: $(srcdir)/ncheck.c $(top_builddir)/lib/config.h \
217  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
218  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
219  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
220  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
221  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
222  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
223  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
224  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
225  $(top_srcdir)/lib/support/dqblk_v2.h \
226  $(top_srcdir)/lib/support/quotaio_tree.h
227 icheck.o: $(srcdir)/icheck.c $(top_builddir)/lib/config.h \
228  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
229  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
230  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
231  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
232  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
233  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
234  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
235  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
236  $(top_srcdir)/lib/support/dqblk_v2.h \
237  $(top_srcdir)/lib/support/quotaio_tree.h
238 lsdel.o: $(srcdir)/lsdel.c $(top_builddir)/lib/config.h \
239  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
240  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
241  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
242  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
243  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
244  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
245  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
246  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
247  $(top_srcdir)/lib/support/dqblk_v2.h \
248  $(top_srcdir)/lib/support/quotaio_tree.h
249 dump.o: $(srcdir)/dump.c $(top_builddir)/lib/config.h \
250  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
251  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
252  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
253  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
254  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
255  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
256  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
257  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
258  $(top_srcdir)/lib/support/dqblk_v2.h \
259  $(top_srcdir)/lib/support/quotaio_tree.h
260 set_fields.o: $(srcdir)/set_fields.c $(top_builddir)/lib/config.h \
261  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
262  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
263  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
264  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
265  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
266  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
267  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
268  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
269  $(top_srcdir)/lib/support/dqblk_v2.h \
270  $(top_srcdir)/lib/support/quotaio_tree.h
271 logdump.o: $(srcdir)/logdump.c $(top_builddir)/lib/config.h \
272  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
273  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
274  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
275  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
276  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
277  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
278  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
279  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
280  $(top_srcdir)/lib/support/dqblk_v2.h \
281  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/../e2fsck/jfs_user.h \
282  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
283  $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
284  $(top_srcdir)/lib/ext2fs/fast_commit.h
285 htree.o: $(srcdir)/htree.c $(top_builddir)/lib/config.h \
286  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
287  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
288  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
289  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
290  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
291  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
292  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
293  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
294  $(top_srcdir)/lib/support/dqblk_v2.h \
295  $(top_srcdir)/lib/support/quotaio_tree.h
296 unused.o: $(srcdir)/unused.c $(top_builddir)/lib/config.h \
297  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
298  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
299  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
300  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
301  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
302  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
303  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
304  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
305  $(top_srcdir)/lib/support/dqblk_v2.h \
306  $(top_srcdir)/lib/support/quotaio_tree.h
307 e2freefrag.o: $(srcdir)/../misc/e2freefrag.c $(top_builddir)/lib/config.h \
308  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
309  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
310  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
311  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
312  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
313  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/e2freefrag.h \
314  $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
315  $(top_builddir)/lib/ss/ss_err.h $(srcdir)/../misc/create_inode.h \
316  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
317  $(top_srcdir)/lib/support/dqblk_v2.h \
318  $(top_srcdir)/lib/support/quotaio_tree.h
319 filefrag.o: $(srcdir)/filefrag.c $(top_builddir)/lib/config.h \
320  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
321  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
322  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
323  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
324  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
325  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
326  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
327  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
328  $(top_srcdir)/lib/support/dqblk_v2.h \
329  $(top_srcdir)/lib/support/quotaio_tree.h
330 extent_inode.o: $(srcdir)/extent_inode.c $(top_builddir)/lib/config.h \
331  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
332  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
333  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
334  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
335  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
336  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
337  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
338  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
339  $(top_srcdir)/lib/support/dqblk_v2.h \
340  $(top_srcdir)/lib/support/quotaio_tree.h
341 zap.o: $(srcdir)/zap.c $(top_builddir)/lib/config.h \
342  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
343  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
344  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
345  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
346  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
347  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
348  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
349  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
350  $(top_srcdir)/lib/support/dqblk_v2.h \
351  $(top_srcdir)/lib/support/quotaio_tree.h
352 create_inode.o: $(srcdir)/../misc/create_inode.c $(top_builddir)/lib/config.h \
353  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
354  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
355  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
356  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
357  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
358  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/fiemap.h \
359  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
360  $(top_srcdir)/lib/support/nls-enable.h
361 xattrs.o: $(srcdir)/xattrs.c $(top_builddir)/lib/config.h \
362  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/support/cstring.h \
363  $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
364  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
365  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
366  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
367  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
368  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
369  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
370  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
371  $(top_srcdir)/lib/support/dqblk_v2.h \
372  $(top_srcdir)/lib/support/quotaio_tree.h
373 quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
374  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
375  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
376  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
377  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
378  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
379  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
380  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
381  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
382  $(top_srcdir)/lib/support/dqblk_v2.h \
383  $(top_srcdir)/lib/support/quotaio_tree.h
384 journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
385  $(top_builddir)/lib/dirpaths.h $(srcdir)/journal.h \
386  $(srcdir)/../e2fsck/jfs_user.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
387  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
388  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
389  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
390  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
391  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
392  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
393  $(top_srcdir)/lib/ext2fs/compiler.h
394 revoke.o: $(srcdir)/../e2fsck/revoke.c $(srcdir)/../e2fsck/jfs_user.h \
395  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
396  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
397  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
398  $(top_builddir)/lib/ext2fs/ext2_err.h \
399  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
400  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
401  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
402  $(top_srcdir)/lib/ext2fs/compiler.h
403 recovery.o: $(srcdir)/../e2fsck/recovery.c $(srcdir)/../e2fsck/jfs_user.h \
404  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
405  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
406  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
407  $(top_builddir)/lib/ext2fs/ext2_err.h \
408  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
409  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
410  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
411  $(top_srcdir)/lib/ext2fs/compiler.h
412 do_journal.o: $(srcdir)/do_journal.c $(top_builddir)/lib/config.h \
413  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
414  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
415  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
416  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
417  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
418  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
419  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
420  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
421  $(top_srcdir)/lib/support/dqblk_v2.h \
422  $(top_srcdir)/lib/support/quotaio_tree.h \
423  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
424  $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
425  $(srcdir)/journal.h $(srcdir)/../e2fsck/jfs_user.h