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