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