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