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