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