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