Whamcloud - gitweb
misc: use EXT2_I_SIZE() consistently to get size
[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 XTRA_CFLAGS=    -DRESOURCE_TRACK -I.
18
19 LIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) $(LIBINTL) $(LIBE2P)
20 DEPLIBS= $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(DEPLIBBLKID) $(DEPLIBUUID) \
21         $(DEPLIBE2P)
22
23 STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) \
24         $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P)
25 STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBCOM_ERR) \
26         $(DEPSTATIC_LIBBLKID) $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
27
28 PROFILED_LIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
29         $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) $(PROFILED_LIBE2P) $(LIBINTL)
30 PROFILED_DEPLIBS= $(PROFILED_LIBEXT2FS) $(DEPPROFILED_LIBCOM_ERR) \
31         $(DEPPROFILED_LIBBLKID) $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
32
33 COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree
34
35 .c.o:
36         $(E) "  CC $<"
37         $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
38 @PROFILE_CMT@   $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
39
40 #
41 # Flags for using Checker
42 #       Note: The optimization flags must include -g
43 #
44 #MCHECK=        -checker
45 #LIBS= $(LIBCOM_ERR) $(LIB_EXT2FS) $(CHECKLIB)
46 #DEPLIBS= $(LIBCOM_ERR) $(LIB_EXT2FS) 
47 #CHECKLIB= /usr/lib/libchecker.o
48
49 #
50 # Flags for doing mtrace --- uncomment to produce mtracing e2fsck
51 #       Note:  The optimization flags must include -g
52 #
53 #MTRACE=        -DMTRACE
54 #MTRACE_OBJ= mtrace.o
55 #MTRACE_SRC= $(srcdir)/mtrace.c
56 #OPT= -g
57
58 #
59 # Flags for doing mcheck --- uncomment to produce mchecking e2fsck
60 #       Note:  The optimization flags must include -g
61 #
62 #MCHECK= -DMCHECK
63
64 OBJS= crc32.o dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \
65         pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \
66         dx_dirinfo.o ehandler.o problem.o message.o recovery.o region.o \
67         revoke.o ea_refcount.o rehash.o profile.o prof_err.o $(MTRACE_OBJ)
68
69 PROFILED_OBJS= profiled/dict.o profiled/unix.o profiled/e2fsck.o \
70         profiled/super.o profiled/pass1.o profiled/pass1b.o \
71         profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
72         profiled/journal.o profiled/badblocks.o profiled/util.o \
73         profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \
74         profiled/message.o profiled/problem.o \
75         profiled/recovery.o profiled/region.o profiled/revoke.o \
76         profiled/ea_refcount.o profiled/rehash.o profiled/profile.o \
77         profiled/crc32.o profiled/prof_err.o
78
79 SRCS= $(srcdir)/e2fsck.c \
80         $(srcdir)/crc32.c \
81         $(srcdir)/gen_crc32table.c \
82         $(srcdir)/dict.c \
83         $(srcdir)/super.c \
84         $(srcdir)/pass1.c \
85         $(srcdir)/pass1b.c \
86         $(srcdir)/pass2.c \
87         $(srcdir)/pass3.c \
88         $(srcdir)/pass4.c \
89         $(srcdir)/pass5.c \
90         $(srcdir)/journal.c \
91         $(srcdir)/recovery.c \
92         $(srcdir)/revoke.c \
93         $(srcdir)/badblocks.c \
94         $(srcdir)/util.c \
95         $(srcdir)/unix.c \
96         $(srcdir)/dirinfo.c \
97         $(srcdir)/dx_dirinfo.c \
98         $(srcdir)/ehandler.c \
99         $(srcdir)/problem.c \
100         $(srcdir)/message.c \
101         $(srcdir)/ea_refcount.c \
102         $(srcdir)/rehash.c \
103         $(srcdir)/region.c \
104         $(srcdir)/profile.c \
105         prof_err.c \
106         $(MTRACE_SRC)
107
108 all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES)
109
110 @PROFILE_CMT@all:: e2fsck.profiled
111
112 prof_err.c prof_err.h: prof_err.et
113         $(E) "  COMPILE_ET prof_err.et"
114         $(Q) $(COMPILE_ET) $(srcdir)/prof_err.et
115
116 e2fsck: $(OBJS)  $(DEPLIBS)
117         $(E) "  LD $@"
118         $(Q) $(LD) $(ALL_LDFLAGS) -o e2fsck $(OBJS) $(LIBS) 
119
120 e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
121         $(E) "  LD $@"
122         $(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS) 
123
124 e2fsck.profiled: $(PROFILED_OBJS)  $(PROFILED_DEPLIBS)
125         $(E) "  LD $@"
126         $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
127                 $(PROFILED_LIBS) 
128
129 gen_crc32table: $(srcdir)/gen_crc32table.c
130         $(E) "  CC $@"
131         $(Q) $(BUILD_CC) $(BUILD_CFLAGS) -o gen_crc32table \
132                 $(srcdir)/gen_crc32table.c
133
134 crc32table.h: gen_crc32table
135         $(E) "  GEN32TABLE $@"
136         $(Q) ./gen_crc32table > crc32table.h
137
138 tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \
139         $(DEPLIBCOM_ERR)
140         $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_problem \
141                 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \
142                 $(LIBINTL)
143
144 tst_crc32: $(srcdir)/crc32.c $(LIBEXT2FS) $(DEPLIBCOM_ERR)
145         $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_crc32 $(srcdir)/crc32.c \
146                 -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR)
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
153 tst_region: region.c $(DEPLIBCOM_ERR)
154         $(E) "  LD $@"
155         $(Q) $(CC) -o tst_region $(srcdir)/region.c \
156                 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR)
157
158 check:: tst_refcount tst_region tst_crc32 tst_problem
159         LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_refcount
160         LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_region
161         LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_crc32
162         LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_problem
163
164 extend: extend.o
165         $(E) "  LD $@"
166         $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
167
168 flushb: flushb.o
169         $(E) "  LD $@"
170         $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
171
172 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
173         $(E) "  LD $@"
174         $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
175
176 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
177                 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
178         $(E) "  LD $@"
179         $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
180                 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
181                 $(ALL_CFLAGS)
182
183 profiled:
184 @PROFILE_CMT@   $(E) "  MKDIR $@"
185 @PROFILE_CMT@   $(Q) mkdir profiled
186
187 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
188         $(E) "  SUBST $@"
189         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
190
191 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
192         $(E) "  SUBST $@"
193         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
194
195 installdirs:
196         $(E) "  MKINSTALLDIRS $(root_sbindir) $(man8dir)"
197         $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
198                 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
199
200 install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
201         $(Q) for i in $(PROGS); do \
202                 echo "  INSTALL $(root_sbindir)/$$i"; \
203                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
204         done
205         $(Q) for i in ext2 ext3 ext4 ext4dev; do \
206                 echo "  LINK $(root_sbindir)/fsck.$$i"; \
207                 (cd $(DESTDIR)$(root_sbindir); \
208                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
209         done
210         $(Q) for i in $(MANPAGES); do \
211                 for j in $(COMPRESS_EXT); do \
212                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
213                 done; \
214                 echo "  INSTALL_DATA $(man8dir)/$$i"; \
215                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
216         done
217         $(Q) for i in $(FMANPAGES); do \
218                 for j in $(COMPRESS_EXT); do \
219                         $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
220                 done; \
221                 echo "  INSTALL_DATA $(man5dir)/$$i"; \
222                 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
223         done
224         $(Q) for i in ext2 ext3 ext4 ext4dev; do \
225                 echo "  LINK $(man8dir)/fsck.$$i.8"; \
226                 (cd $(DESTDIR)$(man8dir); \
227                         $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
228         done
229
230 install-strip: install
231         $(Q) for i in $(PROGS); do \
232                 echo "  STRIP $(root_sbindir)/$$i"; \
233                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
234         done
235
236 uninstall:
237         for i in $(PROGS); do \
238                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
239         done
240         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
241                 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
242                 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
243                 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
244         for i in $(MANPAGES); do \
245                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
246         done
247         for i in $(FMANPAGES); do \
248                 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
249         done
250         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
251                         $(DESTDIR)$(root_sbindir)/fsck.ext3 \
252                         $(DESTDIR)$(root_sbindir)/fsck.ext4 \
253                         $(DESTDIR)$(root_sbindir)/fsck.ext4dev
254
255 clean:
256         $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
257                 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
258                 tst_problem tst_crc32 tst_region tst_refcount gen_crc32table \
259                 crc32table.h e2fsck.conf.5 prof_err.c prof_err.h \
260                 test_profile
261         $(RM) -rf profiled
262
263 mostlyclean: clean
264 distclean: clean
265         $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
266
267 # +++ Dependency line eater +++
268
269 # Makefile dependencies follow.  This must be the last section in
270 # the Makefile.in file
271 #
272 e2fsck.o: $(srcdir)/e2fsck.c $(srcdir)/e2fsck.h \
273  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
274  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
275  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
276  $(top_builddir)/lib/ext2fs/ext2_err.h \
277  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
278  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
279 crc32.o: $(srcdir)/crc32.c $(srcdir)/e2fsck.h \
280  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
281  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
282  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
283  $(top_builddir)/lib/ext2fs/ext2_err.h \
284  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
285  $(srcdir)/profile.h prof_err.h $(srcdir)/crc32defs.h crc32table.h
286 gen_crc32table.o: $(srcdir)/gen_crc32table.c $(srcdir)/crc32defs.h
287 dict.o: $(srcdir)/dict.c $(srcdir)/dict.h
288 super.o: $(srcdir)/super.c $(srcdir)/e2fsck.h \
289  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
290  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
291  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
292  $(top_builddir)/lib/ext2fs/ext2_err.h \
293  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
294  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
295 pass1.o: $(srcdir)/pass1.c $(srcdir)/e2fsck.h \
296  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
297  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
298  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
299  $(top_builddir)/lib/ext2fs/ext2_err.h \
300  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
301  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
302 pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \
303  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
304  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
305  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
306  $(top_builddir)/lib/ext2fs/ext2_err.h \
307  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
308  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/dict.h
309 pass2.o: $(srcdir)/pass2.c $(srcdir)/e2fsck.h \
310  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
311  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
312  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
313  $(top_builddir)/lib/ext2fs/ext2_err.h \
314  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
315  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/dict.h
316 pass3.o: $(srcdir)/pass3.c $(srcdir)/e2fsck.h \
317  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
318  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
319  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
320  $(top_builddir)/lib/ext2fs/ext2_err.h \
321  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
322  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
323 pass4.o: $(srcdir)/pass4.c $(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 $(srcdir)/problem.h
330 pass5.o: $(srcdir)/pass5.c $(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 $(srcdir)/problem.h
337 journal.o: $(srcdir)/journal.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
338  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
339  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
340  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
341  $(top_builddir)/lib/ext2fs/ext2_err.h \
342  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
343  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
344  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
345  $(srcdir)/problem.h
346 recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.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/ext2fs/kernel-jbd.h \
353  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
354 revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
355  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
356  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
357  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
358  $(top_builddir)/lib/ext2fs/ext2_err.h \
359  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
360  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
361  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
362 badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
363  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
364  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
365  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
366  $(top_builddir)/lib/ext2fs/ext2_err.h \
367  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
368  $(srcdir)/profile.h prof_err.h
369 util.o: $(srcdir)/util.c $(srcdir)/e2fsck.h \
370  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
371  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
372  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
373  $(top_builddir)/lib/ext2fs/ext2_err.h \
374  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
375  $(srcdir)/profile.h prof_err.h
376 unix.o: $(srcdir)/unix.c $(top_srcdir)/lib/e2p/e2p.h \
377  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
378  $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
379  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
380  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
381  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
382  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(top_srcdir)/version.h
383 dirinfo.o: $(srcdir)/dirinfo.c $(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/ext2fs/tdb.h
390 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(srcdir)/e2fsck.h \
391  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
392  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
393  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
394  $(top_builddir)/lib/ext2fs/ext2_err.h \
395  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
396  $(srcdir)/profile.h prof_err.h
397 ehandler.o: $(srcdir)/ehandler.c $(srcdir)/e2fsck.h \
398  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
399  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
400  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
401  $(top_builddir)/lib/ext2fs/ext2_err.h \
402  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
403  $(srcdir)/profile.h prof_err.h
404 problem.o: $(srcdir)/problem.c $(srcdir)/e2fsck.h \
405  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
406  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
407  $(top_srcdir)/lib/et/com_err.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 $(srcdir)/problem.h $(srcdir)/problemP.h
411 message.o: $(srcdir)/message.c $(srcdir)/e2fsck.h \
412  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
413  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
414  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
415  $(top_builddir)/lib/ext2fs/ext2_err.h \
416  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
417  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
418 ea_refcount.o: $(srcdir)/ea_refcount.c $(srcdir)/e2fsck.h \
419  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
420  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
421  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
422  $(top_builddir)/lib/ext2fs/ext2_err.h \
423  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
424  $(srcdir)/profile.h prof_err.h
425 rehash.o: $(srcdir)/rehash.c $(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 $(srcdir)/problem.h
432 region.o: $(srcdir)/region.c $(srcdir)/e2fsck.h \
433  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
434  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
435  $(top_srcdir)/lib/et/com_err.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
439 profile.o: $(srcdir)/profile.c $(top_srcdir)/lib/et/com_err.h \
440  $(srcdir)/profile.h prof_err.h
441 prof_err.o: prof_err.c