xref: /aosp_15_r20/external/e2fsprogs/e2fsck/Makefile.in (revision 6a54128f25917bfc36a8a6e9d722c04a0b4641b6)
1*6a54128fSAndroid Build Coastguard Worker#
2*6a54128fSAndroid Build Coastguard Worker# Makefile for e2fsck
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 = e2fsck
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=		e2fsck
16*6a54128fSAndroid Build Coastguard WorkerMANPAGES=	e2fsck.8
17*6a54128fSAndroid Build Coastguard WorkerFMANPAGES=	e2fsck.conf.5
18*6a54128fSAndroid Build Coastguard Worker
19*6a54128fSAndroid Build Coastguard WorkerLIBS= $(LIBSUPPORT) $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) \
20*6a54128fSAndroid Build Coastguard Worker	$(LIBINTL) $(LIBE2P) $(LIBMAGIC) $(SYSLIBS)
21*6a54128fSAndroid Build Coastguard WorkerDEPLIBS= $(DEPLIBSUPPORT) $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(DEPLIBBLKID) \
22*6a54128fSAndroid Build Coastguard Worker	 $(DEPLIBUUID) $(DEPLIBE2P)
23*6a54128fSAndroid Build Coastguard Worker
24*6a54128fSAndroid Build Coastguard WorkerSTATIC_LIBS= $(STATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) \
25*6a54128fSAndroid Build Coastguard Worker	     $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P) \
26*6a54128fSAndroid Build Coastguard Worker	     $(LIBMAGIC) $(SYSLIBS)
27*6a54128fSAndroid Build Coastguard WorkerSTATIC_DEPLIBS= $(DEPSTATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) \
28*6a54128fSAndroid Build Coastguard Worker		$(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
29*6a54128fSAndroid Build Coastguard Worker		$(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
30*6a54128fSAndroid Build Coastguard Worker
31*6a54128fSAndroid Build Coastguard WorkerPROFILED_LIBS= $(PROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \
32*6a54128fSAndroid Build Coastguard Worker	       $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) \
33*6a54128fSAndroid Build Coastguard Worker	       $(PROFILED_LIBE2P) $(LIBINTL) $(LIBMAGIC) $(SYSLIBS)
34*6a54128fSAndroid Build Coastguard WorkerPROFILED_DEPLIBS= $(DEPPROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \
35*6a54128fSAndroid Build Coastguard Worker		  $(DEPPROFILED_LIBCOM_ERR) $(DEPPROFILED_LIBBLKID) \
36*6a54128fSAndroid Build Coastguard Worker		  $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
37*6a54128fSAndroid Build Coastguard Worker
38*6a54128fSAndroid Build Coastguard WorkerCOMPILE_ET=	_ET_DIR_OVERRIDE=$(srcdir)/../lib/et/et ../lib/et/compile_et
39*6a54128fSAndroid Build Coastguard Worker
40*6a54128fSAndroid Build Coastguard Worker.c.o:
41*6a54128fSAndroid Build Coastguard Worker	$(E) "	CC $<"
42*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
43*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
44*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $<
45*6a54128fSAndroid Build Coastguard Worker@PROFILE_CMT@	$(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
46*6a54128fSAndroid Build Coastguard Worker
47*6a54128fSAndroid Build Coastguard Worker#
48*6a54128fSAndroid Build Coastguard Worker# Flags for doing mtrace --- uncomment to produce mtracing e2fsck
49*6a54128fSAndroid Build Coastguard Worker# 	Note:  The optimization flags must include -g
50*6a54128fSAndroid Build Coastguard Worker#
51*6a54128fSAndroid Build Coastguard Worker#MTRACE=	-DMTRACE
52*6a54128fSAndroid Build Coastguard Worker#MTRACE_OBJ= mtrace.o
53*6a54128fSAndroid Build Coastguard Worker#MTRACE_SRC= $(srcdir)/mtrace.c
54*6a54128fSAndroid Build Coastguard Worker#OPT= -g
55*6a54128fSAndroid Build Coastguard Worker
56*6a54128fSAndroid Build Coastguard Worker#
57*6a54128fSAndroid Build Coastguard Worker# Flags for doing mcheck --- uncomment to produce mchecking e2fsck
58*6a54128fSAndroid Build Coastguard Worker# 	Note:  The optimization flags must include -g
59*6a54128fSAndroid Build Coastguard Worker#
60*6a54128fSAndroid Build Coastguard Worker#MCHECK= -DMCHECK
61*6a54128fSAndroid Build Coastguard Worker
62*6a54128fSAndroid Build Coastguard WorkerOBJS= unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \
63*6a54128fSAndroid Build Coastguard Worker	pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \
64*6a54128fSAndroid Build Coastguard Worker	dx_dirinfo.o ehandler.o problem.o message.o quota.o recovery.o \
65*6a54128fSAndroid Build Coastguard Worker	region.o revoke.o ea_refcount.o rehash.o \
66*6a54128fSAndroid Build Coastguard Worker	logfile.o sigcatcher.o $(MTRACE_OBJ) readahead.o \
67*6a54128fSAndroid Build Coastguard Worker	extents.o encrypted_files.o
68*6a54128fSAndroid Build Coastguard Worker
69*6a54128fSAndroid Build Coastguard WorkerPROFILED_OBJS= profiled/unix.o profiled/e2fsck.o \
70*6a54128fSAndroid Build Coastguard Worker	profiled/super.o profiled/pass1.o profiled/pass1b.o \
71*6a54128fSAndroid Build Coastguard Worker	profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
72*6a54128fSAndroid Build Coastguard Worker	profiled/journal.o profiled/badblocks.o profiled/util.o \
73*6a54128fSAndroid Build Coastguard Worker	profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \
74*6a54128fSAndroid Build Coastguard Worker	profiled/message.o profiled/problem.o profiled/quota.o \
75*6a54128fSAndroid Build Coastguard Worker	profiled/recovery.o profiled/region.o profiled/revoke.o \
76*6a54128fSAndroid Build Coastguard Worker	profiled/ea_refcount.o profiled/rehash.o \
77*6a54128fSAndroid Build Coastguard Worker	profiled/logfile.o profiled/sigcatcher.o \
78*6a54128fSAndroid Build Coastguard Worker	profiled/readahead.o profiled/extents.o \
79*6a54128fSAndroid Build Coastguard Worker	profiled/encrypted_files.o
80*6a54128fSAndroid Build Coastguard Worker
81*6a54128fSAndroid Build Coastguard WorkerSRCS= $(srcdir)/e2fsck.c \
82*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/super.c \
83*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/pass1.c \
84*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/pass1b.c \
85*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/pass2.c \
86*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/pass3.c \
87*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/pass4.c \
88*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/pass5.c \
89*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/journal.c \
90*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/recovery.c \
91*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/revoke.c \
92*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/badblocks.c \
93*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/util.c \
94*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/unix.c \
95*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/dirinfo.c \
96*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/dx_dirinfo.c \
97*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/ehandler.c \
98*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/problem.c \
99*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/message.c \
100*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/ea_refcount.c \
101*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/rehash.c \
102*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/readahead.c \
103*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/region.c \
104*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/sigcatcher.c \
105*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/logfile.c \
106*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/quota.c \
107*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/extents.c \
108*6a54128fSAndroid Build Coastguard Worker	$(srcdir)/encrypted_files.c \
109*6a54128fSAndroid Build Coastguard Worker	$(MTRACE_SRC)
110*6a54128fSAndroid Build Coastguard Worker
111*6a54128fSAndroid Build Coastguard Workerall:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES)
112*6a54128fSAndroid Build Coastguard Worker
113*6a54128fSAndroid Build Coastguard Worker@PROFILE_CMT@all:: e2fsck.profiled
114*6a54128fSAndroid Build Coastguard Worker
115*6a54128fSAndroid Build Coastguard Workerall-static:: e2fsck.static
116*6a54128fSAndroid Build Coastguard Worker
117*6a54128fSAndroid Build Coastguard Workere2fsck: $(OBJS)  $(DEPLIBS)
118*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
119*6a54128fSAndroid Build Coastguard Worker	$(Q) $(LD) $(ALL_LDFLAGS) $(RDYNAMIC) -o e2fsck $(OBJS) $(LIBS)
120*6a54128fSAndroid Build Coastguard Worker
121*6a54128fSAndroid Build Coastguard Workere2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
122*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
123*6a54128fSAndroid Build Coastguard Worker	$(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS)
124*6a54128fSAndroid Build Coastguard Worker
125*6a54128fSAndroid Build Coastguard Workere2fsck.profiled: $(OBJS)  $(PROFILED_DEPLIBS)
126*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
127*6a54128fSAndroid Build Coastguard Worker	$(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
128*6a54128fSAndroid Build Coastguard Worker		$(PROFILED_LIBS)
129*6a54128fSAndroid Build Coastguard Worker
130*6a54128fSAndroid Build Coastguard Workertst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o
131*6a54128fSAndroid Build Coastguard Worker	$(E) "	CC $@"
132*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(RDYNAMIC) \
133*6a54128fSAndroid Build Coastguard Worker		$(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher
134*6a54128fSAndroid Build Coastguard Worker
135*6a54128fSAndroid Build Coastguard Workertst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \
136*6a54128fSAndroid Build Coastguard Worker	$(DEPLIBCOM_ERR)
137*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) -o tst_problem \
138*6a54128fSAndroid Build Coastguard Worker		$(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \
139*6a54128fSAndroid Build Coastguard Worker		$(LIBINTL) $(SYSLIBS)
140*6a54128fSAndroid Build Coastguard Worker
141*6a54128fSAndroid Build Coastguard Workertst_refcount: ea_refcount.c $(DEPLIBCOM_ERR) $(LIBEXT2FS)
142*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
143*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
144*6a54128fSAndroid Build Coastguard Worker		$(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \
145*6a54128fSAndroid Build Coastguard Worker		$(LIBCOM_ERR) $(LIBEXT2FS) $(SYSLIBS)
146*6a54128fSAndroid Build Coastguard Worker
147*6a54128fSAndroid Build Coastguard Workertst_logfile: $(srcdir)/logfile.c
148*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
149*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c \
150*6a54128fSAndroid Build Coastguard Worker		$(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM $(SYSLIBS)
151*6a54128fSAndroid Build Coastguard Worker
152*6a54128fSAndroid Build Coastguard Workertst_region: region.c $(LIBEXT2FS) $(DEPLIBCOM_ERR)
153*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
154*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CC) -o tst_region $(srcdir)/region.c \
155*6a54128fSAndroid Build Coastguard Worker		$(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \
156*6a54128fSAndroid Build Coastguard Worker		$(LIBEXT2FS) $(LIBCOM_ERR) $(SYSLIBS)
157*6a54128fSAndroid Build Coastguard Worker
158*6a54128fSAndroid Build Coastguard Workerfullcheck check:: tst_refcount tst_region tst_problem
159*6a54128fSAndroid Build Coastguard Worker	$(TESTENV) ./tst_refcount
160*6a54128fSAndroid Build Coastguard Worker	$(TESTENV) ./tst_region
161*6a54128fSAndroid Build Coastguard Worker	$(TESTENV) ./tst_problem
162*6a54128fSAndroid Build Coastguard Worker
163*6a54128fSAndroid Build Coastguard Workerextend: extend.o
164*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
165*6a54128fSAndroid Build Coastguard Worker	$(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
166*6a54128fSAndroid Build Coastguard Worker
167*6a54128fSAndroid Build Coastguard Workerflushb: flushb.o
168*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
169*6a54128fSAndroid Build Coastguard Worker	$(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
170*6a54128fSAndroid Build Coastguard Worker
171*6a54128fSAndroid Build Coastguard Workeriscan: iscan.o $(DEPLIBS)
172*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
173*6a54128fSAndroid Build Coastguard Worker	$(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o $(LIBS)
174*6a54128fSAndroid Build Coastguard Worker
175*6a54128fSAndroid Build Coastguard Workeriscan.static: iscan.o $(STATIC_DEPLIBS)
176*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
177*6a54128fSAndroid Build Coastguard Worker	$(Q) $(LD) $(LDFLAGS_STATIC) -o iscan.static iscan.o $(STATIC_LIBS)
178*6a54128fSAndroid Build Coastguard Worker
179*6a54128fSAndroid Build Coastguard Workertest_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
180*6a54128fSAndroid Build Coastguard Worker		prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
181*6a54128fSAndroid Build Coastguard Worker	$(E) "	LD $@"
182*6a54128fSAndroid Build Coastguard Worker	$(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
183*6a54128fSAndroid Build Coastguard Worker		profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
184*6a54128fSAndroid Build Coastguard Worker		$(ALL_CFLAGS)
185*6a54128fSAndroid Build Coastguard Worker
186*6a54128fSAndroid Build Coastguard Workerprofiled:
187*6a54128fSAndroid Build Coastguard Worker@PROFILE_CMT@	$(E) "	MKDIR $@"
188*6a54128fSAndroid Build Coastguard Worker@PROFILE_CMT@	$(Q) mkdir profiled
189*6a54128fSAndroid Build Coastguard Worker
190*6a54128fSAndroid Build Coastguard Workere2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
191*6a54128fSAndroid Build Coastguard Worker	$(E) "	SUBST $@"
192*6a54128fSAndroid Build Coastguard Worker	$(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
193*6a54128fSAndroid Build Coastguard Worker
194*6a54128fSAndroid Build Coastguard Workere2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
195*6a54128fSAndroid Build Coastguard Worker	$(E) "	SUBST $@"
196*6a54128fSAndroid Build Coastguard Worker	$(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
197*6a54128fSAndroid Build Coastguard Worker
198*6a54128fSAndroid Build Coastguard Workerinstalldirs:
199*6a54128fSAndroid Build Coastguard Worker	$(E) "	MKDIR_P $(root_sbindir) $(man8dir)"
200*6a54128fSAndroid Build Coastguard Worker	$(Q) $(MKDIR_P) $(DESTDIR)$(root_sbindir) \
201*6a54128fSAndroid Build Coastguard Worker		$(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
202*6a54128fSAndroid Build Coastguard Worker
203*6a54128fSAndroid Build Coastguard Workerinstall: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
204*6a54128fSAndroid Build Coastguard Worker	$(Q) for i in $(PROGS); do \
205*6a54128fSAndroid Build Coastguard Worker		$(ES) "	INSTALL $(root_sbindir)/$$i"; \
206*6a54128fSAndroid Build Coastguard Worker		$(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
207*6a54128fSAndroid Build Coastguard Worker	done
208*6a54128fSAndroid Build Coastguard Worker	$(Q) for i in ext2 ext3 ext4; do \
209*6a54128fSAndroid Build Coastguard Worker		$(ES) "	LINK $(root_sbindir)/fsck.$$i"; \
210*6a54128fSAndroid Build Coastguard Worker		(cd $(DESTDIR)$(root_sbindir); \
211*6a54128fSAndroid Build Coastguard Worker			$(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
212*6a54128fSAndroid Build Coastguard Worker	done
213*6a54128fSAndroid Build Coastguard Worker	$(Q) for i in $(MANPAGES); do \
214*6a54128fSAndroid Build Coastguard Worker		for j in $(COMPRESS_EXT); do \
215*6a54128fSAndroid Build Coastguard Worker			$(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
216*6a54128fSAndroid Build Coastguard Worker		done; \
217*6a54128fSAndroid Build Coastguard Worker		$(ES) "	INSTALL_DATA $(man8dir)/$$i"; \
218*6a54128fSAndroid Build Coastguard Worker		$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
219*6a54128fSAndroid Build Coastguard Worker	done
220*6a54128fSAndroid Build Coastguard Worker	$(Q) for i in $(FMANPAGES); do \
221*6a54128fSAndroid Build Coastguard Worker		for j in $(COMPRESS_EXT); do \
222*6a54128fSAndroid Build Coastguard Worker			$(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
223*6a54128fSAndroid Build Coastguard Worker		done; \
224*6a54128fSAndroid Build Coastguard Worker		$(ES) "	INSTALL_DATA $(man5dir)/$$i"; \
225*6a54128fSAndroid Build Coastguard Worker		$(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
226*6a54128fSAndroid Build Coastguard Worker	done
227*6a54128fSAndroid Build Coastguard Worker	$(Q) for i in ext2 ext3 ext4; do \
228*6a54128fSAndroid Build Coastguard Worker		$(ES) "	LINK $(man8dir)/fsck.$$i.8"; \
229*6a54128fSAndroid Build Coastguard Worker		(cd $(DESTDIR)$(man8dir); \
230*6a54128fSAndroid Build Coastguard Worker			$(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
231*6a54128fSAndroid Build Coastguard Worker	done
232*6a54128fSAndroid Build Coastguard Worker
233*6a54128fSAndroid Build Coastguard Workerinstall-strip: install
234*6a54128fSAndroid Build Coastguard Worker	$(Q) for i in $(PROGS); do \
235*6a54128fSAndroid Build Coastguard Worker		$(ES) "	STRIP $(root_sbindir)/$$i"; \
236*6a54128fSAndroid Build Coastguard Worker		$(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
237*6a54128fSAndroid Build Coastguard Worker	done
238*6a54128fSAndroid Build Coastguard Worker
239*6a54128fSAndroid Build Coastguard Workeruninstall:
240*6a54128fSAndroid Build Coastguard Worker	for i in $(PROGS); do \
241*6a54128fSAndroid Build Coastguard Worker		$(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
242*6a54128fSAndroid Build Coastguard Worker	done
243*6a54128fSAndroid Build Coastguard Worker	$(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
244*6a54128fSAndroid Build Coastguard Worker		$(DESTDIR)$(root_sbindir)/fsck.ext3 \
245*6a54128fSAndroid Build Coastguard Worker		$(DESTDIR)$(root_sbindir)/fsck.ext4
246*6a54128fSAndroid Build Coastguard Worker	for i in $(MANPAGES); do \
247*6a54128fSAndroid Build Coastguard Worker		$(RM) -f $(DESTDIR)$(man8dir)/$$i; \
248*6a54128fSAndroid Build Coastguard Worker	done
249*6a54128fSAndroid Build Coastguard Worker	for i in $(FMANPAGES); do \
250*6a54128fSAndroid Build Coastguard Worker		$(RM) -f $(DESTDIR)$(man5dir)/$$i; \
251*6a54128fSAndroid Build Coastguard Worker	done
252*6a54128fSAndroid Build Coastguard Worker	$(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
253*6a54128fSAndroid Build Coastguard Worker			$(DESTDIR)$(root_sbindir)/fsck.ext3 \
254*6a54128fSAndroid Build Coastguard Worker			$(DESTDIR)$(root_sbindir)/fsck.ext4
255*6a54128fSAndroid Build Coastguard Worker
256*6a54128fSAndroid Build Coastguard Workerclean::
257*6a54128fSAndroid Build Coastguard Worker	$(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
258*6a54128fSAndroid Build Coastguard Worker		e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
259*6a54128fSAndroid Build Coastguard Worker		tst_problem tst_region tst_refcount tst_crc32 \
260*6a54128fSAndroid Build Coastguard Worker		gen_crc32table e2fsck.conf.5 \
261*6a54128fSAndroid Build Coastguard Worker		prof_err.c prof_err.h test_profile iscan iscan.static
262*6a54128fSAndroid Build Coastguard Worker	$(RM) -rf profiled
263*6a54128fSAndroid Build Coastguard Worker
264*6a54128fSAndroid Build Coastguard Workermostlyclean: clean
265*6a54128fSAndroid Build Coastguard Workerdistclean: clean
266*6a54128fSAndroid Build Coastguard Worker	$(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
267*6a54128fSAndroid Build Coastguard Worker
268*6a54128fSAndroid Build Coastguard Worker# +++ Dependency line eater +++
269*6a54128fSAndroid Build Coastguard Worker#
270*6a54128fSAndroid Build Coastguard Worker# Makefile dependencies follow.  This must be the last section in
271*6a54128fSAndroid Build Coastguard Worker# the Makefile.in file
272*6a54128fSAndroid Build Coastguard Worker#
273*6a54128fSAndroid Build Coastguard Workere2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \
274*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
275*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
276*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
277*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
278*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
279*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
280*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
281*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
282*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
283*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
284*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
285*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
286*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
287*6a54128fSAndroid Build Coastguard Workersuper.o: $(srcdir)/super.c $(top_builddir)/lib/config.h \
288*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
289*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
290*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
291*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
292*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
293*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
294*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
295*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
296*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
297*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
298*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
299*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
300*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
301*6a54128fSAndroid Build Coastguard Workerpass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \
302*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
303*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
304*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
305*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
306*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
307*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
308*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
309*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
310*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
311*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
312*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
313*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
314*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/e2p/e2p.h $(srcdir)/problem.h
315*6a54128fSAndroid Build Coastguard Workerpass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \
316*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
317*6a54128fSAndroid Build Coastguard Worker $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
318*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
319*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
320*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
321*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
322*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
323*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
324*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
325*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
326*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
327*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
328*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h $(top_srcdir)/lib/support/dict.h
329*6a54128fSAndroid Build Coastguard Workerpass2.o: $(srcdir)/pass2.c $(top_builddir)/lib/config.h \
330*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
331*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
332*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
333*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
334*6a54128fSAndroid Build Coastguard Worker $(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 $(top_srcdir)/lib/support/profile.h \
337*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.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 Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
341*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
342*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h $(top_srcdir)/lib/support/dict.h
343*6a54128fSAndroid Build Coastguard Workerpass3.o: $(srcdir)/pass3.c $(top_builddir)/lib/config.h \
344*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
345*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
346*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
347*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
348*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
349*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
350*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
351*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
352*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
353*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
354*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
355*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
356*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
357*6a54128fSAndroid Build Coastguard Workerpass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \
358*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
359*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
360*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
361*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
362*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
363*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
364*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
365*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
366*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
367*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
368*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
369*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
370*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
371*6a54128fSAndroid Build Coastguard Workerpass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \
372*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
373*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
374*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
375*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
376*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
377*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
378*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
379*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
380*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
381*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
382*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
383*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
384*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
385*6a54128fSAndroid Build Coastguard Workerjournal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
386*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
387*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
388*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
389*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
390*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
391*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
392*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
393*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
394*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
395*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
396*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
397*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
398*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(srcdir)/problem.h
399*6a54128fSAndroid Build Coastguard Workerrecovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h \
400*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/config.h $(top_builddir)/lib/dirpaths.h \
401*6a54128fSAndroid Build Coastguard Worker $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
402*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
403*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
404*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
405*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
406*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
407*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
408*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
409*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
410*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
411*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
412*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-jbd.h
413*6a54128fSAndroid Build Coastguard Workerrevoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h \
414*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/config.h $(top_builddir)/lib/dirpaths.h \
415*6a54128fSAndroid Build Coastguard Worker $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
416*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
417*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.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 $(top_srcdir)/lib/support/profile.h \
421*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.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/fast_commit.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 $(top_srcdir)/lib/ext2fs/kernel-jbd.h
427*6a54128fSAndroid Build Coastguard Workerbadblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \
428*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
429*6a54128fSAndroid Build Coastguard Worker $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
430*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
431*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
432*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
433*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
434*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
435*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
436*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
437*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
438*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
439*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
440*6a54128fSAndroid Build Coastguard Workerutil.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
441*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
442*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
443*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
444*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
445*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
446*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
447*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
448*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
449*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
450*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
451*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
452*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
453*6a54128fSAndroid Build Coastguard Workerunix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \
454*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \
455*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
456*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/support/plausible.h \
457*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/devname.h $(srcdir)/e2fsck.h \
458*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
459*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
460*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
461*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
462*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
463*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
464*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
465*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
466*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
467*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h $(srcdir)/jfs_user.h \
468*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/version.h
469*6a54128fSAndroid Build Coastguard Workerdirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \
470*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
471*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
472*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
473*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
474*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
475*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
476*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
477*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
478*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
479*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
480*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
481*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
482*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/tdb.h
483*6a54128fSAndroid Build Coastguard Workerdx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \
484*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
485*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
486*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
487*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
488*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
489*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
490*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
491*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
492*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
493*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
494*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
495*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
496*6a54128fSAndroid Build Coastguard Workerehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \
497*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
498*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
499*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
500*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
501*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
502*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
503*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
504*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
505*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
506*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
507*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
508*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
509*6a54128fSAndroid Build Coastguard Workerproblem.o: $(srcdir)/problem.c $(top_builddir)/lib/config.h \
510*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
511*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
512*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
513*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
514*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
515*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
516*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
517*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
518*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
519*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
520*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
521*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
522*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h $(srcdir)/problemP.h
523*6a54128fSAndroid Build Coastguard Workermessage.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \
524*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/support/quotaio.h \
525*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
526*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
527*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
528*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
529*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
530*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/dqblk_v2.h \
531*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/e2fsck.h \
532*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/profile.h $(top_builddir)/lib/support/prof_err.h \
533*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
534*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
535*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
536*6a54128fSAndroid Build Coastguard Workerea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \
537*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
538*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
539*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
540*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
541*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
542*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
543*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
544*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
545*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
546*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
547*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
548*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
549*6a54128fSAndroid Build Coastguard Workerrehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \
550*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
551*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
552*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
553*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
554*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
555*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
556*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
557*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
558*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
559*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
560*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
561*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
562*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h $(top_srcdir)/lib/support/sort_r.h
563*6a54128fSAndroid Build Coastguard Workerreadahead.o: $(srcdir)/readahead.c $(top_builddir)/lib/config.h \
564*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
565*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
566*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
567*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
568*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
569*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
570*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
571*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
572*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
573*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
574*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
575*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
576*6a54128fSAndroid Build Coastguard Workerregion.o: $(srcdir)/region.c $(top_builddir)/lib/config.h \
577*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
578*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
579*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
580*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
581*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
582*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
583*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
584*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
585*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
586*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
587*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
588*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
589*6a54128fSAndroid Build Coastguard Workersigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \
590*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
591*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
592*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
593*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
594*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
595*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
596*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
597*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
598*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
599*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
600*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
601*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
602*6a54128fSAndroid Build Coastguard Workerlogfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \
603*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
604*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
605*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
606*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
607*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
608*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
609*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
610*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
611*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
612*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
613*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
614*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
615*6a54128fSAndroid Build Coastguard Workerquota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
616*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
617*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
618*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
619*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
620*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
621*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
622*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
623*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
624*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
625*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
626*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
627*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
628*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
629*6a54128fSAndroid Build Coastguard Workerextents.o: $(srcdir)/extents.c $(top_builddir)/lib/config.h \
630*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
631*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
632*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
633*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
634*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
635*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
636*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
637*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
638*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
639*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
640*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
641*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
642*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h
643*6a54128fSAndroid Build Coastguard Workerencrypted_files.o: $(srcdir)/encrypted_files.c $(top_builddir)/lib/config.h \
644*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
645*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
646*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
647*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
648*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ext2fs/ext2_err.h \
649*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
650*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
651*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
652*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/dqblk_v2.h \
653*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/support/quotaio_tree.h \
654*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
655*6a54128fSAndroid Build Coastguard Worker $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
656*6a54128fSAndroid Build Coastguard Worker $(srcdir)/problem.h $(top_srcdir)/lib/ext2fs/rbtree.h
657