Whamcloud - gitweb
debugfs: create journal handling routines
[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= $(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) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(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) $(ALL_CFLAGS) $(ALL_LDFLAGS) -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) $(ALL_LDFLAGS) -DTEST_PROGRAM \
144                 $(LIBCOM_ERR) $(LIBEXT2FS) $(SYSLIBS)
145
146 tst_logfile: $(srcdir)/logfile.c
147         $(E) "  LD $@"
148         $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c \
149                 $(ALL_CFLAGS) $(ALL_LDFLAGS) -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) $(ALL_LDFLAGS) -DTEST_PROGRAM \
155                 $(LIBCOM_ERR) $(SYSLIBS)
156
157 check:: tst_refcount tst_region tst_problem
158         $(TESTENV) ./tst_refcount
159         $(TESTENV) ./tst_region
160         $(TESTENV) ./tst_problem
161
162 extend: extend.o
163         $(E) "  LD $@"
164         $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
165
166 flushb: flushb.o
167         $(E) "  LD $@"
168         $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
169
170 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
171         $(E) "  LD $@"
172         $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
173
174 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
175                 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
176         $(E) "  LD $@"
177         $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
178                 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
179                 $(ALL_CFLAGS)
180
181 profiled:
182 @PROFILE_CMT@   $(E) "  MKDIR $@"
183 @PROFILE_CMT@   $(Q) mkdir profiled
184
185 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
186         $(E) "  SUBST $@"
187         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
188
189 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
190         $(E) "  SUBST $@"
191         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
192
193 installdirs:
194         $(E) "  MKINSTALLDIRS $(root_sbindir) $(man8dir)"
195         $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
196                 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
197
198 install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
199         $(Q) for i in $(PROGS); do \
200                 $(ES) " INSTALL $(root_sbindir)/$$i"; \
201                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
202         done
203         $(Q) for i in ext2 ext3 ext4 ext4dev; do \
204                 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \
205                 (cd $(DESTDIR)$(root_sbindir); \
206                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
207         done
208         $(Q) for i in $(MANPAGES); do \
209                 for j in $(COMPRESS_EXT); do \
210                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
211                 done; \
212                 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \
213                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
214         done
215         $(Q) for i in $(FMANPAGES); do \
216                 for j in $(COMPRESS_EXT); do \
217                         $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
218                 done; \
219                 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \
220                 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
221         done
222         $(Q) for i in ext2 ext3 ext4 ext4dev; do \
223                 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \
224                 (cd $(DESTDIR)$(man8dir); \
225                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
226         done
227
228 install-strip: install
229         $(Q) for i in $(PROGS); do \
230                 $(ES) " STRIP $(root_sbindir)/$$i"; \
231                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
232         done
233
234 uninstall:
235         for i in $(PROGS); do \
236                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
237         done
238         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
239                 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
240                 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
241                 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
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                         $(DESTDIR)$(root_sbindir)/fsck.ext4dev
252
253 clean::
254         $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
255                 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
256                 tst_problem tst_region tst_refcount 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/bitops.h \
276  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
277  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
278  $(top_srcdir)/lib/../e2fsck/dict.h $(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 $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
364  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
365  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
366  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
367  $(top_builddir)/lib/ext2fs/ext2_err.h \
368  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
369  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
370  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
371  $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
372  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
373 revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
374  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
375  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
376  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
377  $(top_builddir)/lib/ext2fs/ext2_err.h \
378  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
379  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
380  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
381  $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
382  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
383 badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \
384  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
385  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
386  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
387  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
388  $(top_builddir)/lib/ext2fs/ext2_err.h \
389  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
390  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
391  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
392  $(top_srcdir)/lib/../e2fsck/dict.h
393 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
394  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
395  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
396  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
397  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
398  $(top_builddir)/lib/ext2fs/ext2_err.h \
399  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
400  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
401  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
402  $(top_srcdir)/lib/../e2fsck/dict.h
403 unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \
404  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \
405  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
406  $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
407  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
408  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
409  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
410  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
411  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
412  $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h \
413  $(top_srcdir)/version.h
414 dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \
415  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
416  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
417  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
418  $(top_srcdir)/lib/et/com_err.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/bitops.h \
421  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
422  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
423  $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/tdb.h
424 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \
425  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
426  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
427  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
428  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
429  $(top_builddir)/lib/ext2fs/ext2_err.h \
430  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
431  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
432  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
433  $(top_srcdir)/lib/../e2fsck/dict.h
434 ehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \
435  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
436  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
437  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
438  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
439  $(top_builddir)/lib/ext2fs/ext2_err.h \
440  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
441  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
442  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
443  $(top_srcdir)/lib/../e2fsck/dict.h
444 problem.o: $(srcdir)/problem.c $(top_builddir)/lib/config.h \
445  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
446  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
447  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
448  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
449  $(top_builddir)/lib/ext2fs/ext2_err.h \
450  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
451  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
452  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
453  $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h $(srcdir)/problemP.h
454 message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \
455  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
456  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
457  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
458  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
459  $(top_builddir)/lib/ext2fs/ext2_err.h \
460  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
461  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
462  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
463  $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
464 ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \
465  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
466  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
467  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
468  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
469  $(top_builddir)/lib/ext2fs/ext2_err.h \
470  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
471  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
472  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
473  $(top_srcdir)/lib/../e2fsck/dict.h
474 rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \
475  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
476  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
477  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
478  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
479  $(top_builddir)/lib/ext2fs/ext2_err.h \
480  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
481  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
482  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
483  $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
484 region.o: $(srcdir)/region.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/bitops.h \
491  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
492  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
493  $(top_srcdir)/lib/../e2fsck/dict.h
494 profile.o: $(srcdir)/profile.c $(top_builddir)/lib/config.h \
495  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
496  $(srcdir)/profile.h prof_err.h
497 sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \
498  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
499  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
500  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
501  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
502  $(top_builddir)/lib/ext2fs/ext2_err.h \
503  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
504  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
505  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
506  $(top_srcdir)/lib/../e2fsck/dict.h
507 logfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \
508  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
509  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
510  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
511  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
512  $(top_builddir)/lib/ext2fs/ext2_err.h \
513  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
514  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
515  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
516  $(top_srcdir)/lib/../e2fsck/dict.h
517 prof_err.o: prof_err.c
518 quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
519  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
520  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
521  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
522  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
523  $(top_builddir)/lib/ext2fs/ext2_err.h \
524  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
525  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
526  $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
527  $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h