Whamcloud - gitweb
Merge branch 'maint' into next
[tools/e2fsprogs.git] / e2fsck / Makefile.in
1 #
2 # Makefile for e2fsck
3 #
4
5 srcdir = @srcdir@
6 top_srcdir = @top_srcdir@
7 VPATH = @srcdir@
8 top_builddir = ..
9 my_dir = e2fsck
10 INSTALL = @INSTALL@
11
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= 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/prof_err.o profiled/logfile.o \
84         profiled/sigcatcher.o
85
86 SRCS= $(srcdir)/e2fsck.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: $(OBJS)  $(PROFILED_DEPLIBS)
133         $(E) "  LD $@"
134         $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
135                 $(PROFILED_LIBS) 
136
137 tst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o
138         $(E) "  CC $@"
139         $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) $(RDYNAMIC) \
140                 $(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher
141
142 tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \
143         $(DEPLIBCOM_ERR)
144         $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_problem \
145                 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \
146                 $(LIBINTL) $(SYSLIBS)
147
148 tst_refcount: ea_refcount.c $(DEPLIBCOM_ERR)
149         $(E) "  LD $@"
150         $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
151                 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(LIBEXT2FS) \
152                 $(SYSLIBS)
153
154 tst_logfile: $(srcdir)/logfile.c
155         $(E) "  LD $@"
156         $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c $(ALL_CFLAGS) \
157                 -DTEST_PROGRAM $(SYSLIBS)
158
159 tst_region: region.c $(DEPLIBCOM_ERR)
160         $(E) "  LD $@"
161         $(Q) $(CC) -o tst_region $(srcdir)/region.c \
162                 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(SYSLIBS)
163
164 check:: tst_refcount tst_region tst_problem
165         LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_refcount
166         LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_region
167         LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_problem
168
169 extend: extend.o
170         $(E) "  LD $@"
171         $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
172
173 flushb: flushb.o
174         $(E) "  LD $@"
175         $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
176
177 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
178         $(E) "  LD $@"
179         $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
180
181 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
182                 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
183         $(E) "  LD $@"
184         $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
185                 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
186                 $(ALL_CFLAGS)
187
188 profiled:
189 @PROFILE_CMT@   $(E) "  MKDIR $@"
190 @PROFILE_CMT@   $(Q) mkdir profiled
191
192 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
193         $(E) "  SUBST $@"
194         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
195
196 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
197         $(E) "  SUBST $@"
198         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
199
200 installdirs:
201         $(E) "  MKINSTALLDIRS $(root_sbindir) $(man8dir)"
202         $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
203                 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
204
205 install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
206         $(Q) for i in $(PROGS); do \
207                 $(ES) " INSTALL $(root_sbindir)/$$i"; \
208                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
209         done
210         $(Q) for i in ext2 ext3 ext4 ext4dev; do \
211                 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \
212                 (cd $(DESTDIR)$(root_sbindir); \
213                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
214         done
215         $(Q) for i in $(MANPAGES); do \
216                 for j in $(COMPRESS_EXT); do \
217                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
218                 done; \
219                 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \
220                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
221         done
222         $(Q) for i in $(FMANPAGES); do \
223                 for j in $(COMPRESS_EXT); do \
224                         $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
225                 done; \
226                 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \
227                 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
228         done
229         $(Q) for i in ext2 ext3 ext4 ext4dev; do \
230                 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \
231                 (cd $(DESTDIR)$(man8dir); \
232                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
233         done
234
235 install-strip: install
236         $(Q) for i in $(PROGS); do \
237                 $(ES) " STRIP $(root_sbindir)/$$i"; \
238                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
239         done
240
241 uninstall:
242         for i in $(PROGS); do \
243                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
244         done
245         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
246                 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
247                 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
248                 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
249         for i in $(MANPAGES); do \
250                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
251         done
252         for i in $(FMANPAGES); do \
253                 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
254         done
255         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
256                         $(DESTDIR)$(root_sbindir)/fsck.ext3 \
257                         $(DESTDIR)$(root_sbindir)/fsck.ext4 \
258                         $(DESTDIR)$(root_sbindir)/fsck.ext4dev
259
260 clean:
261         $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
262                 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
263                 tst_problem tst_region tst_refcount e2fsck.conf.5 \
264                 prof_err.c prof_err.h test_profile
265         $(RM) -rf profiled
266
267 mostlyclean: clean
268 distclean: clean
269         $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
270
271 # +++ Dependency line eater +++
272
273 # Makefile dependencies follow.  This must be the last section in
274 # the Makefile.in file
275 #
276 e2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \
277  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
278  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
279  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
280  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
281  $(top_builddir)/lib/ext2fs/ext2_err.h \
282  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
283  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
284  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
285  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
286  $(srcdir)/problem.h
287 dict.o: $(srcdir)/dict.c $(top_builddir)/lib/config.h \
288  $(top_builddir)/lib/dirpaths.h $(srcdir)/dict.h
289 super.o: $(srcdir)/super.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/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
298  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
299  $(srcdir)/problem.h
300 pass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \
301  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
302  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
303  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
304  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
305  $(top_builddir)/lib/ext2fs/ext2_err.h \
306  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
307  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
308  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
309  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
310  $(srcdir)/problem.h
311 pass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \
312  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
313  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
314  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
315  $(top_srcdir)/lib/ext2fs/ext3_extents.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/mkquota.h \
319  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
320  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
321  $(srcdir)/problem.h $(srcdir)/dict.h
322 pass2.o: $(srcdir)/pass2.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/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
331  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
332  $(srcdir)/problem.h $(srcdir)/dict.h
333 pass3.o: $(srcdir)/pass3.c $(top_builddir)/lib/config.h \
334  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
335  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
336  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
337  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
338  $(top_builddir)/lib/ext2fs/ext2_err.h \
339  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
340  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
341  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
342  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
343  $(srcdir)/problem.h
344 pass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \
345  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
346  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
347  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
348  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
349  $(top_builddir)/lib/ext2fs/ext2_err.h \
350  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
351  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
352  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
353  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
354  $(srcdir)/problem.h
355 pass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \
356  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
357  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
358  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
359  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
360  $(top_builddir)/lib/ext2fs/ext2_err.h \
361  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
362  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
363  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
364  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
365  $(srcdir)/problem.h
366 journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
367  $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
368  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
369  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
370  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
371  $(top_builddir)/lib/ext2fs/ext2_err.h \
372  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
373  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
374  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
375  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
376  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
377  $(top_srcdir)/lib/ext2fs/kernel-list.h $(srcdir)/problem.h
378 recovery.o: $(srcdir)/recovery.c $(top_builddir)/lib/config.h \
379  $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
380  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
381  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
382  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
383  $(top_builddir)/lib/ext2fs/ext2_err.h \
384  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
385  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
386  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
387  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
388  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
389  $(top_srcdir)/lib/ext2fs/kernel-list.h
390 revoke.o: $(srcdir)/revoke.c $(top_builddir)/lib/config.h \
391  $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
392  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
393  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
394  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
395  $(top_builddir)/lib/ext2fs/ext2_err.h \
396  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
397  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
398  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
399  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
400  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
401  $(top_srcdir)/lib/ext2fs/kernel-list.h
402 badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \
403  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
404  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
405  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
406  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
407  $(top_builddir)/lib/ext2fs/ext2_err.h \
408  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
409  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
410  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
411  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
412 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
413  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
414  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
415  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
416  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
417  $(top_builddir)/lib/ext2fs/ext2_err.h \
418  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
419  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
420  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
421  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
422 unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \
423  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \
424  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
425  $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
426  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
427  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
428  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
429  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
430  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
431  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
432  $(srcdir)/problem.h $(top_srcdir)/version.h
433 dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \
434  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
435  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
436  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
437  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
438  $(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/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
442  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
443  $(top_srcdir)/lib/ext2fs/tdb.h
444 dx_dirinfo.o: $(srcdir)/dx_dirinfo.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/mkquota.h \
452  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
453  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
454 ehandler.o: $(srcdir)/ehandler.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/mkquota.h \
462  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
463  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
464 problem.o: $(srcdir)/problem.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/mkquota.h \
472  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
473  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
474  $(srcdir)/problem.h $(srcdir)/problemP.h
475 message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \
476  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
477  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
478  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
479  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
480  $(top_builddir)/lib/ext2fs/ext2_err.h \
481  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
482  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
483  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
484  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
485  $(srcdir)/problem.h
486 ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \
487  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
488  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
489  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
490  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
491  $(top_builddir)/lib/ext2fs/ext2_err.h \
492  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
493  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
494  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
495  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
496 rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \
497  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
498  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
499  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
500  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
501  $(top_builddir)/lib/ext2fs/ext2_err.h \
502  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
503  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
504  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
505  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
506  $(srcdir)/problem.h
507 region.o: $(srcdir)/region.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/mkquota.h \
515  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
516  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
517 profile.o: $(srcdir)/profile.c $(top_builddir)/lib/config.h \
518  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
519  $(srcdir)/profile.h prof_err.h
520 sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \
521  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
522  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
523  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
524  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
525  $(top_builddir)/lib/ext2fs/ext2_err.h \
526  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
527  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
528  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
529  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
530 logfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \
531  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
532  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
533  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
534  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
535  $(top_builddir)/lib/ext2fs/ext2_err.h \
536  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
537  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
538  $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
539  $(top_srcdir)/lib/quota/quotaio_tree.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/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
550  $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
551  $(srcdir)/problem.h $(top_srcdir)/lib/quota/quotaio.h