Whamcloud - gitweb
Update Makefile.in files using "make depend"
[tools/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= $(LIBSUPPORT) $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) \
19         $(LIBINTL) $(LIBE2P) $(LIBMAGIC) $(SYSLIBS)
20 DEPLIBS= $(DEPLIBSUPPORT) $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(DEPLIBBLKID) \
21          $(DEPLIBUUID) $(DEPLIBE2P)
22
23 STATIC_LIBS= $(STATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) \
24              $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P) \
25              $(LIBMAGIC) $(SYSLIBS)
26 STATIC_DEPLIBS= $(DEPSTATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) \
27                 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
28                 $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
29
30 PROFILED_LIBS= $(PROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \
31                $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) \
32                $(PROFILED_LIBE2P) $(LIBINTL) $(LIBMAGIC) $(SYSLIBS)
33 PROFILED_DEPLIBS= $(DEPPROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \
34                   $(DEPPROFILED_LIBCOM_ERR) $(DEPPROFILED_LIBBLKID) \
35                   $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
36
37 COMPILE_ET=     _ET_DIR_OVERRIDE=$(srcdir)/../lib/et/et ../lib/et/compile_et
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= 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 \
65         logfile.o sigcatcher.o $(MTRACE_OBJ) readahead.o \
66         extents.o
67
68 PROFILED_OBJS= profiled/unix.o profiled/e2fsck.o \
69         profiled/super.o profiled/pass1.o profiled/pass1b.o \
70         profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
71         profiled/journal.o profiled/badblocks.o profiled/util.o \
72         profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \
73         profiled/message.o profiled/problem.o profiled/quota.o \
74         profiled/recovery.o profiled/region.o profiled/revoke.o \
75         profiled/ea_refcount.o profiled/rehash.o \
76         profiled/logfile.o profiled/sigcatcher.o \
77         profiled/readahead.o profiled/extents.o
78
79 SRCS= $(srcdir)/e2fsck.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)/readahead.c \
101         $(srcdir)/region.c \
102         $(srcdir)/sigcatcher.c \
103         $(srcdir)/logfile.c \
104         $(srcdir)/quota.c \
105         $(srcdir)/extents.c \
106         $(MTRACE_SRC)
107
108 all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES)
109
110 @PROFILE_CMT@all:: e2fsck.profiled
111
112 e2fsck: $(OBJS)  $(DEPLIBS)
113         $(E) "  LD $@"
114         $(Q) $(LD) $(ALL_LDFLAGS) $(RDYNAMIC) -o e2fsck $(OBJS) $(LIBS) 
115
116 e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
117         $(E) "  LD $@"
118         $(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS) 
119
120 e2fsck.profiled: $(OBJS)  $(PROFILED_DEPLIBS)
121         $(E) "  LD $@"
122         $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
123                 $(PROFILED_LIBS) 
124
125 tst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o
126         $(E) "  CC $@"
127         $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(RDYNAMIC) \
128                 $(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher
129
130 tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \
131         $(DEPLIBCOM_ERR)
132         $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) -o tst_problem \
133                 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \
134                 $(LIBINTL) $(SYSLIBS)
135
136 tst_refcount: ea_refcount.c $(DEPLIBCOM_ERR)
137         $(E) "  LD $@"
138         $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
139                 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \
140                 $(LIBCOM_ERR) $(LIBEXT2FS) $(SYSLIBS)
141
142 tst_logfile: $(srcdir)/logfile.c
143         $(E) "  LD $@"
144         $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c \
145                 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM $(SYSLIBS)
146
147 tst_region: region.c $(DEPLIBCOM_ERR)
148         $(E) "  LD $@"
149         $(Q) $(CC) -o tst_region $(srcdir)/region.c \
150                 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \
151                 $(LIBCOM_ERR) $(SYSLIBS)
152
153 fullcheck check:: tst_refcount tst_region tst_problem
154         $(TESTENV) ./tst_refcount
155         $(TESTENV) ./tst_region
156         $(TESTENV) ./tst_problem
157
158 extend: extend.o
159         $(E) "  LD $@"
160         $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
161
162 flushb: flushb.o
163         $(E) "  LD $@"
164         $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
165
166 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
167         $(E) "  LD $@"
168         $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
169
170 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
171                 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
172         $(E) "  LD $@"
173         $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
174                 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
175                 $(ALL_CFLAGS)
176
177 profiled:
178 @PROFILE_CMT@   $(E) "  MKDIR $@"
179 @PROFILE_CMT@   $(Q) mkdir profiled
180
181 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
182         $(E) "  SUBST $@"
183         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
184
185 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
186         $(E) "  SUBST $@"
187         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
188
189 installdirs:
190         $(E) "  MKINSTALLDIRS $(root_sbindir) $(man8dir)"
191         $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
192                 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
193
194 install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
195         $(Q) for i in $(PROGS); do \
196                 $(ES) " INSTALL $(root_sbindir)/$$i"; \
197                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
198         done
199         $(Q) for i in ext2 ext3 ext4; do \
200                 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \
201                 (cd $(DESTDIR)$(root_sbindir); \
202                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
203         done
204         $(Q) for i in $(MANPAGES); do \
205                 for j in $(COMPRESS_EXT); do \
206                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
207                 done; \
208                 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \
209                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
210         done
211         $(Q) for i in $(FMANPAGES); do \
212                 for j in $(COMPRESS_EXT); do \
213                         $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
214                 done; \
215                 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \
216                 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
217         done
218         $(Q) for i in ext2 ext3 ext4; do \
219                 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \
220                 (cd $(DESTDIR)$(man8dir); \
221                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
222         done
223
224 install-strip: install
225         $(Q) for i in $(PROGS); do \
226                 $(ES) " STRIP $(root_sbindir)/$$i"; \
227                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
228         done
229
230 uninstall:
231         for i in $(PROGS); do \
232                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
233         done
234         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
235                 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
236                 $(DESTDIR)$(root_sbindir)/fsck.ext4
237         for i in $(MANPAGES); do \
238                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
239         done
240         for i in $(FMANPAGES); do \
241                 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
242         done
243         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
244                         $(DESTDIR)$(root_sbindir)/fsck.ext3 \
245                         $(DESTDIR)$(root_sbindir)/fsck.ext4
246
247 clean::
248         $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
249                 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
250                 tst_problem tst_region tst_refcount tst_crc32 \
251                 gen_crc32table e2fsck.conf.5 \
252                 prof_err.c prof_err.h test_profile
253         $(RM) -rf profiled
254
255 mostlyclean: clean
256 distclean: clean
257         $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
258
259 # +++ Dependency line eater +++
260
261 # Makefile dependencies follow.  This must be the last section in
262 # the Makefile.in file
263 #
264 e2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \
265  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
266  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
267  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
268  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
269  $(top_builddir)/lib/ext2fs/ext2_err.h \
270  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
271  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
272  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
273  $(top_srcdir)/lib/support/dqblk_v2.h \
274  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
275 super.o: $(srcdir)/super.c $(top_builddir)/lib/config.h \
276  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
277  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
278  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
279  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
280  $(top_builddir)/lib/ext2fs/ext2_err.h \
281  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
282  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
283  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
284  $(top_srcdir)/lib/support/dqblk_v2.h \
285  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
286 pass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \
287  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
288  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
289  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
290  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
291  $(top_builddir)/lib/ext2fs/ext2_err.h \
292  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
293  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
294  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
295  $(top_srcdir)/lib/support/dqblk_v2.h \
296  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
297 pass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \
298  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
299  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
300  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
301  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
302  $(top_builddir)/lib/ext2fs/ext2_err.h \
303  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
304  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
305  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
306  $(top_srcdir)/lib/support/dqblk_v2.h \
307  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \
308  $(top_srcdir)/lib/support/dict.h
309 pass2.o: $(srcdir)/pass2.c $(top_builddir)/lib/config.h \
310  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
311  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
312  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
313  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
314  $(top_builddir)/lib/ext2fs/ext2_err.h \
315  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
316  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
317  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
318  $(top_srcdir)/lib/support/dqblk_v2.h \
319  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \
320  $(top_srcdir)/lib/support/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/hashmap.h \
328  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
329  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
330  $(top_srcdir)/lib/support/dqblk_v2.h \
331  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
332 pass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \
333  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
334  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
335  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
336  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
337  $(top_builddir)/lib/ext2fs/ext2_err.h \
338  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
339  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
340  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
341  $(top_srcdir)/lib/support/dqblk_v2.h \
342  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
343 pass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \
344  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
345  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
346  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
347  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
348  $(top_builddir)/lib/ext2fs/ext2_err.h \
349  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
350  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
351  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
352  $(top_srcdir)/lib/support/dqblk_v2.h \
353  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
354 journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
355  $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
356  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
357  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
358  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
359  $(top_builddir)/lib/ext2fs/ext2_err.h \
360  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
361  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
362  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
363  $(top_srcdir)/lib/support/dqblk_v2.h \
364  $(top_srcdir)/lib/support/quotaio_tree.h \
365  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
366  $(top_srcdir)/lib/ext2fs/kernel-list.h $(srcdir)/problem.h
367 recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
368  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
369  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
370  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
371  $(top_builddir)/lib/ext2fs/ext2_err.h \
372  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
373  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
374  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
375  $(top_srcdir)/lib/support/dqblk_v2.h \
376  $(top_srcdir)/lib/support/quotaio_tree.h \
377  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
378  $(top_srcdir)/lib/ext2fs/kernel-list.h
379 revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
380  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
381  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
382  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
383  $(top_builddir)/lib/ext2fs/ext2_err.h \
384  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
385  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
386  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
387  $(top_srcdir)/lib/support/dqblk_v2.h \
388  $(top_srcdir)/lib/support/quotaio_tree.h \
389  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
390  $(top_srcdir)/lib/ext2fs/kernel-list.h
391 badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \
392  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
393  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
394  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
395  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
396  $(top_builddir)/lib/ext2fs/ext2_err.h \
397  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
398  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
399  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
400  $(top_srcdir)/lib/support/dqblk_v2.h \
401  $(top_srcdir)/lib/support/quotaio_tree.h
402 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
403  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
404  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
405  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
406  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
407  $(top_builddir)/lib/ext2fs/ext2_err.h \
408  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
409  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
410  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
411  $(top_srcdir)/lib/support/dqblk_v2.h \
412  $(top_srcdir)/lib/support/quotaio_tree.h
413 unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \
414  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \
415  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
416  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/support/plausible.h \
417  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
418  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
419  $(top_builddir)/lib/ext2fs/ext2_err.h \
420  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
421  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
422  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
423  $(top_srcdir)/lib/support/dqblk_v2.h \
424  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \
425  $(srcdir)/jfs_user.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
426  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
427  $(top_srcdir)/version.h
428 dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \
429  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
430  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
431  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
432  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
433  $(top_builddir)/lib/ext2fs/ext2_err.h \
434  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
435  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
436  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
437  $(top_srcdir)/lib/support/dqblk_v2.h \
438  $(top_srcdir)/lib/support/quotaio_tree.h $(top_srcdir)/lib/ext2fs/tdb.h
439 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \
440  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
441  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
442  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
443  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
444  $(top_builddir)/lib/ext2fs/ext2_err.h \
445  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
446  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
447  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
448  $(top_srcdir)/lib/support/dqblk_v2.h \
449  $(top_srcdir)/lib/support/quotaio_tree.h
450 ehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \
451  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
452  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
453  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
454  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
455  $(top_builddir)/lib/ext2fs/ext2_err.h \
456  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
457  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
458  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
459  $(top_srcdir)/lib/support/dqblk_v2.h \
460  $(top_srcdir)/lib/support/quotaio_tree.h
461 problem.o: $(srcdir)/problem.c $(top_builddir)/lib/config.h \
462  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
463  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
464  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
465  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
466  $(top_builddir)/lib/ext2fs/ext2_err.h \
467  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
468  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
469  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
470  $(top_srcdir)/lib/support/dqblk_v2.h \
471  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \
472  $(srcdir)/problemP.h
473 message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \
474  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/support/quotaio.h \
475  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
476  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
477  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
478  $(top_builddir)/lib/ext2fs/ext2_err.h \
479  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
480  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/dqblk_v2.h \
481  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/e2fsck.h \
482  $(top_srcdir)/lib/support/profile.h $(top_builddir)/lib/support/prof_err.h \
483  $(srcdir)/problem.h
484 ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \
485  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
486  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
487  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
488  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
489  $(top_builddir)/lib/ext2fs/ext2_err.h \
490  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
491  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
492  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
493  $(top_srcdir)/lib/support/dqblk_v2.h \
494  $(top_srcdir)/lib/support/quotaio_tree.h
495 rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \
496  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
497  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
498  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
499  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
500  $(top_builddir)/lib/ext2fs/ext2_err.h \
501  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
502  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
503  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
504  $(top_srcdir)/lib/support/dqblk_v2.h \
505  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
506 readahead.o: $(srcdir)/readahead.c $(top_builddir)/lib/config.h \
507  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
508  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
509  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
510  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
511  $(top_builddir)/lib/ext2fs/ext2_err.h \
512  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
513  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
514  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
515  $(top_srcdir)/lib/support/dqblk_v2.h \
516  $(top_srcdir)/lib/support/quotaio_tree.h
517 region.o: $(srcdir)/region.c $(top_builddir)/lib/config.h \
518  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
519  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
520  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
521  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
522  $(top_builddir)/lib/ext2fs/ext2_err.h \
523  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
524  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
525  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
526  $(top_srcdir)/lib/support/dqblk_v2.h \
527  $(top_srcdir)/lib/support/quotaio_tree.h
528 sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \
529  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
530  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
531  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
532  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
533  $(top_builddir)/lib/ext2fs/ext2_err.h \
534  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
535  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
536  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
537  $(top_srcdir)/lib/support/dqblk_v2.h \
538  $(top_srcdir)/lib/support/quotaio_tree.h
539 logfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \
540  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
541  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
542  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
543  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
544  $(top_builddir)/lib/ext2fs/ext2_err.h \
545  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
546  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
547  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
548  $(top_srcdir)/lib/support/dqblk_v2.h \
549  $(top_srcdir)/lib/support/quotaio_tree.h
550 quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
551  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
552  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
553  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
554  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
555  $(top_builddir)/lib/ext2fs/ext2_err.h \
556  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
557  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
558  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
559  $(top_srcdir)/lib/support/dqblk_v2.h \
560  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h
561 extents.o: $(srcdir)/extents.c $(top_builddir)/lib/config.h \
562  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
563  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
564  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
565  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
566  $(top_builddir)/lib/ext2fs/ext2_err.h \
567  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
568  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \
569  $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \
570  $(top_srcdir)/lib/support/dqblk_v2.h \
571  $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h