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