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