]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - e2fsck/Makefile.in
c40b188b583ddb36b899043b2685cd3c39d9b93c
[thirdparty/e2fsprogs.git] / e2fsck / Makefile.in
1 #
2 # Makefile for e2fsck
3 #
4
5 srcdir = @srcdir@
6 top_srcdir = @top_srcdir@
7 VPATH = @srcdir@
8 top_builddir = ..
9 my_dir = e2fsck
10 INSTALL = @INSTALL@
11
12 @MCONFIG@
13
14 PROGS= e2fsck
15 MANPAGES= e2fsck.8
16 FMANPAGES= e2fsck.conf.5
17
18 LIBS= $(LIBQUOTA) $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) \
19 $(LIBINTL) $(LIBE2P) $(SYSLIBS)
20 DEPLIBS= $(DEPLIBQUOTA) $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(DEPLIBBLKID) \
21 $(DEPLIBUUID) $(DEPLIBE2P)
22
23 STATIC_LIBS= $(STATIC_LIBQUOTA) $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) \
24 $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P) \
25 $(SYSLIBS)
26 STATIC_DEPLIBS= $(DEPSTATIC_LIBQUOTA) $(STATIC_LIBEXT2FS) \
27 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
28 $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
29
30 PROFILED_LIBS= $(PROFILED_LIBQUOTA) $(PROFILED_LIBEXT2FS) \
31 $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) \
32 $(PROFILED_LIBE2P) $(LIBINTL) $(SYSLIBS)
33 PROFILED_DEPLIBS= $(DEPPROFILED_LIBQUOTA) $(PROFILED_LIBEXT2FS) \
34 $(DEPPROFILED_LIBCOM_ERR) $(DEPPROFILED_LIBBLKID) \
35 $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
36
37 COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree
38
39 .c.o:
40 $(E) " CC $<"
41 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
42 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
43 $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $<
44 @PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
45
46 #
47 # Flags for doing mtrace --- uncomment to produce mtracing e2fsck
48 # Note: The optimization flags must include -g
49 #
50 #MTRACE= -DMTRACE
51 #MTRACE_OBJ= mtrace.o
52 #MTRACE_SRC= $(srcdir)/mtrace.c
53 #OPT= -g
54
55 #
56 # Flags for doing mcheck --- uncomment to produce mchecking e2fsck
57 # Note: The optimization flags must include -g
58 #
59 #MCHECK= -DMCHECK
60
61 OBJS= dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \
62 pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \
63 dx_dirinfo.o ehandler.o problem.o message.o quota.o recovery.o \
64 region.o revoke.o ea_refcount.o rehash.o profile.o prof_err.o \
65 logfile.o sigcatcher.o $(MTRACE_OBJ)
66
67 PROFILED_OBJS= profiled/dict.o profiled/unix.o profiled/e2fsck.o \
68 profiled/super.o profiled/pass1.o profiled/pass1b.o \
69 profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
70 profiled/journal.o profiled/badblocks.o profiled/util.o \
71 profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \
72 profiled/message.o profiled/problem.o profiled/quota.o \
73 profiled/recovery.o profiled/region.o profiled/revoke.o \
74 profiled/ea_refcount.o profiled/rehash.o profiled/profile.o \
75 profiled/prof_err.o profiled/logfile.o \
76 profiled/sigcatcher.o
77
78 SRCS= $(srcdir)/e2fsck.c \
79 $(srcdir)/dict.c \
80 $(srcdir)/super.c \
81 $(srcdir)/pass1.c \
82 $(srcdir)/pass1b.c \
83 $(srcdir)/pass2.c \
84 $(srcdir)/pass3.c \
85 $(srcdir)/pass4.c \
86 $(srcdir)/pass5.c \
87 $(srcdir)/journal.c \
88 $(srcdir)/recovery.c \
89 $(srcdir)/revoke.c \
90 $(srcdir)/badblocks.c \
91 $(srcdir)/util.c \
92 $(srcdir)/unix.c \
93 $(srcdir)/dirinfo.c \
94 $(srcdir)/dx_dirinfo.c \
95 $(srcdir)/ehandler.c \
96 $(srcdir)/problem.c \
97 $(srcdir)/message.c \
98 $(srcdir)/ea_refcount.c \
99 $(srcdir)/rehash.c \
100 $(srcdir)/region.c \
101 $(srcdir)/profile.c \
102 $(srcdir)/sigcatcher.c \
103 $(srcdir)/logfile.c \
104 prof_err.c \
105 $(srcdir)/quota.c \
106 $(MTRACE_SRC)
107
108 all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES)
109
110 @PROFILE_CMT@all:: e2fsck.profiled
111
112 prof_err.c prof_err.h: prof_err.et
113 $(E) " COMPILE_ET prof_err.et"
114 $(Q) $(COMPILE_ET) $(srcdir)/prof_err.et
115
116 e2fsck: $(OBJS) $(DEPLIBS)
117 $(E) " LD $@"
118 $(Q) $(LD) $(ALL_LDFLAGS) $(RDYNAMIC) -o e2fsck $(OBJS) $(LIBS)
119
120 e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
121 $(E) " LD $@"
122 $(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS)
123
124 e2fsck.profiled: $(OBJS) $(PROFILED_DEPLIBS)
125 $(E) " LD $@"
126 $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
127 $(PROFILED_LIBS)
128
129 tst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o
130 $(E) " CC $@"
131 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) $(RDYNAMIC) \
132 $(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher
133
134 tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \
135 $(DEPLIBCOM_ERR)
136 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_problem \
137 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \
138 $(LIBINTL) $(SYSLIBS)
139
140 tst_refcount: ea_refcount.c $(DEPLIBCOM_ERR)
141 $(E) " LD $@"
142 $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
143 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(LIBEXT2FS) \
144 $(SYSLIBS)
145
146 tst_logfile: $(srcdir)/logfile.c
147 $(E) " LD $@"
148 $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c $(ALL_CFLAGS) \
149 -DTEST_PROGRAM $(SYSLIBS)
150
151 tst_region: region.c $(DEPLIBCOM_ERR)
152 $(E) " LD $@"
153 $(Q) $(CC) -o tst_region $(srcdir)/region.c \
154 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(SYSLIBS)
155
156 check:: tst_refcount tst_region tst_problem
157 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_refcount
158 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_region
159 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_problem
160
161 extend: extend.o
162 $(E) " LD $@"
163 $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
164
165 flushb: flushb.o
166 $(E) " LD $@"
167 $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
168
169 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
170 $(E) " LD $@"
171 $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
172
173 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
174 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
175 $(E) " LD $@"
176 $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
177 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
178 $(ALL_CFLAGS)
179
180 profiled:
181 @PROFILE_CMT@ $(E) " MKDIR $@"
182 @PROFILE_CMT@ $(Q) mkdir profiled
183
184 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
185 $(E) " SUBST $@"
186 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
187
188 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
189 $(E) " SUBST $@"
190 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
191
192 installdirs:
193 $(E) " MKINSTALLDIRS $(root_sbindir) $(man8dir)"
194 $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
195 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
196
197 install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
198 $(Q) for i in $(PROGS); do \
199 $(ES) " INSTALL $(root_sbindir)/$$i"; \
200 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
201 done
202 $(Q) for i in ext2 ext3 ext4 ext4dev; do \
203 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \
204 (cd $(DESTDIR)$(root_sbindir); \
205 $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
206 done
207 $(Q) for i in $(MANPAGES); do \
208 for j in $(COMPRESS_EXT); do \
209 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
210 done; \
211 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \
212 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
213 done
214 $(Q) for i in $(FMANPAGES); do \
215 for j in $(COMPRESS_EXT); do \
216 $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
217 done; \
218 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \
219 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
220 done
221 $(Q) for i in ext2 ext3 ext4 ext4dev; do \
222 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \
223 (cd $(DESTDIR)$(man8dir); \
224 $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
225 done
226
227 install-strip: install
228 $(Q) for i in $(PROGS); do \
229 $(ES) " STRIP $(root_sbindir)/$$i"; \
230 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
231 done
232
233 uninstall:
234 for i in $(PROGS); do \
235 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
236 done
237 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
238 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
239 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
240 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
241 for i in $(MANPAGES); do \
242 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
243 done
244 for i in $(FMANPAGES); do \
245 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
246 done
247 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
248 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
249 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
250 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
251
252 clean::
253 $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
254 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
255 tst_problem tst_region tst_refcount e2fsck.conf.5 \
256 prof_err.c prof_err.h test_profile
257 $(RM) -rf profiled
258
259 mostlyclean: clean
260 distclean: clean
261 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
262
263 # +++ Dependency line eater +++
264 #
265 # Makefile dependencies follow. This must be the last section in
266 # the Makefile.in file
267 #
268 e2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \
269 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
270 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
271 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
272 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
273 $(top_builddir)/lib/ext2fs/ext2_err.h \
274 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
275 $(srcdir)/profile.h prof_err.h \
276 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
277 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
278 $(srcdir)/problem.h
279 dict.o: $(srcdir)/dict.c $(top_builddir)/lib/config.h \
280 $(top_builddir)/lib/dirpaths.h $(srcdir)/dict.h
281 super.o: $(srcdir)/super.c $(top_builddir)/lib/config.h \
282 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
283 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
284 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
285 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
286 $(top_builddir)/lib/ext2fs/ext2_err.h \
287 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
288 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
289 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
290 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
291 pass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \
292 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
293 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
294 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
295 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
296 $(top_builddir)/lib/ext2fs/ext2_err.h \
297 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
298 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
299 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
300 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
301 pass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \
302 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
303 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
304 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
305 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
306 $(top_builddir)/lib/ext2fs/ext2_err.h \
307 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
308 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
309 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
310 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h $(srcdir)/dict.h
311 pass2.o: $(srcdir)/pass2.c $(top_builddir)/lib/config.h \
312 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
313 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
314 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
315 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
316 $(top_builddir)/lib/ext2fs/ext2_err.h \
317 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
318 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
319 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
320 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h $(srcdir)/dict.h
321 pass3.o: $(srcdir)/pass3.c $(top_builddir)/lib/config.h \
322 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
323 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
324 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
325 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
326 $(top_builddir)/lib/ext2fs/ext2_err.h \
327 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
328 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
329 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
330 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
331 pass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \
332 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
333 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
334 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
335 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
336 $(top_builddir)/lib/ext2fs/ext2_err.h \
337 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
338 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
339 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
340 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
341 pass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \
342 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
343 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
344 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
345 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
346 $(top_builddir)/lib/ext2fs/ext2_err.h \
347 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
348 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
349 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
350 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
351 journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
352 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
353 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
354 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
355 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
356 $(top_builddir)/lib/ext2fs/ext2_err.h \
357 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
358 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
359 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
360 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
361 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
362 $(srcdir)/problem.h
363 recovery.o: $(srcdir)/recovery.c $(top_builddir)/lib/config.h \
364 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
365 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
366 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
367 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
368 $(top_builddir)/lib/ext2fs/ext2_err.h \
369 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
370 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
371 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
372 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
373 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
374 revoke.o: $(srcdir)/revoke.c $(top_builddir)/lib/config.h \
375 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
376 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
377 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
378 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
379 $(top_builddir)/lib/ext2fs/ext2_err.h \
380 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
381 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
382 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
383 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
384 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
385 badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \
386 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
387 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
388 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
389 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
390 $(top_builddir)/lib/ext2fs/ext2_err.h \
391 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
392 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
393 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
394 $(top_srcdir)/lib/../e2fsck/dict.h
395 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
396 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
397 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
398 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
399 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
400 $(top_builddir)/lib/ext2fs/ext2_err.h \
401 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
402 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
403 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
404 $(top_srcdir)/lib/../e2fsck/dict.h
405 unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \
406 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \
407 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
408 $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
409 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
410 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
411 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
412 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
413 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
414 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h \
415 $(top_srcdir)/version.h
416 dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \
417 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
418 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
419 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
420 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
421 $(top_builddir)/lib/ext2fs/ext2_err.h \
422 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
423 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
424 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
425 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/tdb.h
426 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \
427 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
428 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
429 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
430 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
431 $(top_builddir)/lib/ext2fs/ext2_err.h \
432 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
433 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
434 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
435 $(top_srcdir)/lib/../e2fsck/dict.h
436 ehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \
437 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
438 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
439 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
440 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
441 $(top_builddir)/lib/ext2fs/ext2_err.h \
442 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
443 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
444 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
445 $(top_srcdir)/lib/../e2fsck/dict.h
446 problem.o: $(srcdir)/problem.c $(top_builddir)/lib/config.h \
447 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
448 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
449 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
450 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
451 $(top_builddir)/lib/ext2fs/ext2_err.h \
452 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
453 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
454 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
455 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h $(srcdir)/problemP.h
456 message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \
457 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
458 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
459 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
460 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
461 $(top_builddir)/lib/ext2fs/ext2_err.h \
462 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
463 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
464 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
465 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
466 ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \
467 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
468 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
469 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
470 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
471 $(top_builddir)/lib/ext2fs/ext2_err.h \
472 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
473 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
474 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
475 $(top_srcdir)/lib/../e2fsck/dict.h
476 rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \
477 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
478 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
479 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
480 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
481 $(top_builddir)/lib/ext2fs/ext2_err.h \
482 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
483 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
484 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
485 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
486 region.o: $(srcdir)/region.c $(top_builddir)/lib/config.h \
487 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
488 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
489 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
490 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
491 $(top_builddir)/lib/ext2fs/ext2_err.h \
492 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
493 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
494 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
495 $(top_srcdir)/lib/../e2fsck/dict.h
496 profile.o: $(srcdir)/profile.c $(top_builddir)/lib/config.h \
497 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
498 $(srcdir)/profile.h prof_err.h
499 sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \
500 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
501 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
502 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
503 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
504 $(top_builddir)/lib/ext2fs/ext2_err.h \
505 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
506 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
507 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
508 $(top_srcdir)/lib/../e2fsck/dict.h
509 logfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \
510 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
511 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
512 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
513 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
514 $(top_builddir)/lib/ext2fs/ext2_err.h \
515 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
516 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
517 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
518 $(top_srcdir)/lib/../e2fsck/dict.h
519 prof_err.o: prof_err.c
520 quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
521 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
522 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
523 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
524 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
525 $(top_builddir)/lib/ext2fs/ext2_err.h \
526 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
527 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
528 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
529 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h