Whamcloud - gitweb
Add man page documenting the /etc/e2fsck.conf configuration file.
[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 LDFLAG_STATIC = @LDFLAG_STATIC@
12
13 @MCONFIG@
14
15 PROGS=          e2fsck
16 MANPAGES=       e2fsck.8
17 FMANPAGES=      e2fsck.conf.5
18 XTRA_CFLAGS=    -DRESOURCE_TRACK -I.
19
20 LIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) $(LIBINTL)
21 DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(DEPLIBUUID)
22
23 STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) \
24         $(STATIC_LIBUUID) $(LIBINTL)
25 STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) \
26         $(DEPSTATIC_LIBUUID)
27
28 PROFILED_LIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
29         $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) $(LIBINTL)
30 PROFILED_DEPLIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
31         $(PROFILED_LIBBLKID) $(DEPPROFILED_LIBUUID)
32
33 COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree
34
35 .c.o:
36         @echo " CC $<"
37         @$(CC) -c $(ALL_CFLAGS) $< -o $@
38 @PROFILE_CMT@   @$(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= dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o pass3.o pass4.o \
65         pass5.o journal.o swapfs.o badblocks.o util.o dirinfo.o dx_dirinfo.o \
66         ehandler.o problem.o message.o recovery.o region.o revoke.o \
67         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 profiled/swapfs.o \
75         profiled/recovery.o profiled/region.o profiled/revoke.o \
76         profiled/ea_refcount.o profiled/rehash.o profiled/profile.o \
77         profiled/prof_err.o
78
79 SRCS= $(srcdir)/e2fsck.c \
80         $(srcdir)/dict.c \
81         $(srcdir)/super.c \
82         $(srcdir)/pass1.c \
83         $(srcdir)/pass1b.c \
84         $(srcdir)/pass2.c \
85         $(srcdir)/pass3.c \
86         $(srcdir)/pass4.c \
87         $(srcdir)/pass5.c \
88         $(srcdir)/journal.c \
89         $(srcdir)/recovery.c \
90         $(srcdir)/revoke.c \
91         $(srcdir)/badblocks.c \
92         $(srcdir)/util.c \
93         $(srcdir)/unix.c \
94         $(srcdir)/dirinfo.c \
95         $(srcdir)/dx_dirinfo.c \
96         $(srcdir)/ehandler.c \
97         $(srcdir)/problem.c \
98         $(srcdir)/message.c \
99         $(srcdir)/swapfs.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.static e2fsck.shared $(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: e2fsck.@E2FSCK_TYPE@
116         @echo " CP $@"
117         @$(CP) e2fsck.@E2FSCK_TYPE@ e2fsck
118
119 e2fsck.static: $(OBJS)  $(STATIC_DEPLIBS)
120         @echo " LD $@"
121         @$(LD) $(ALL_LDFLAGS) $(LDFLAG_STATIC) -o e2fsck.static $(OBJS) \
122                 $(STATIC_LIBS) 
123
124 e2fsck.shared: $(OBJS)  $(DEPLIBS)
125         @echo " LD $@"
126         @$(LD) $(ALL_LDFLAGS) -o e2fsck.shared $(OBJS) $(LIBS) 
127
128 e2fsck.profiled: $(PROFILED_OBJS)  $(PROFILED_DEPLIBS)
129         @echo " LD $@"
130         @$(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
131                 $(PROFILED_LIBS) 
132
133 tst_refcount: ea_refcount.c
134         @echo " LD $@"
135         @$(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
136                 $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err
137
138 tst_region: region.c
139         @echo " LD $@"
140         @$(CC) -o tst_region $(srcdir)/region.c \
141                 $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err
142
143 extend: extend.o
144         @echo " LD $@"
145         @$(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
146
147 flushb: flushb.o
148         @echo " LD $@"
149         @$(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
150
151 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
152         @echo " LD $@"
153         @$(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
154
155 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
156                 prof_err.o profile.h $(STATIC_LIBCOM_ERR)
157         @echo " LD $@"
158         @$(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
159                 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
160                 $(ALL_CFLAGS)
161
162 profiled:
163 @PROFILE_CMT@   @echo " MKDIR $@"
164 @PROFILE_CMT@   @mkdir profiled
165
166 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
167         @echo " SUBST $@"
168         @$(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
169
170 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
171         @echo " SUBST $@"
172         @$(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
173
174 installdirs:
175         @echo " MKINSTALLDIRS $(root_sbindir) $(man8dir)"
176         @$(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
177                 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
178
179 install: $(PROGS) $(MANPAGES) installdirs
180         @for i in $(PROGS); do \
181                 echo "  INSTALL $(root_sbindir)/$$i"; \
182                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
183         done
184         @echo " LINK $(root_sbindir)/fsck.ext2"
185         @$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
186                         $(DESTDIR)$(root_sbindir)/fsck.ext2
187         @echo " LINK $(root_sbindir)/fsck.ext3"
188         @$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
189                         $(DESTDIR)$(root_sbindir)/fsck.ext3
190         @for i in $(MANPAGES); do \
191                 for j in $(COMPRESS_EXT); do \
192                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
193                 done; \
194                 echo "  INSTALL_DATA $(man8dir)/$$i"; \
195                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
196         done
197         @for i in $(FMANPAGES); do \
198                 for j in $(COMPRESS_EXT); do \
199                         $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
200                 done; \
201                 echo "  INSTALL_DATA $(man5dir)/$$i"; \
202                 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
203         done
204         @echo " LINK $(man8dir)/fsck.ext2.8"
205         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
206                 $(DESTDIR)$(man8dir)/fsck.ext2.8
207         @echo " LINK $(man8dir)/fsck.ext3.8"
208         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
209                 $(DESTDIR)$(man8dir)/fsck.ext3.8
210
211 install-strip: install
212         @for i in $(PROGS); do \
213                 echo "  STRIP $(root_sbindir)/$$i"; \
214                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
215         done
216
217 uninstall:
218         for i in $(PROGS); do \
219                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
220         done
221         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
222                 $(DESTDIR)$(root_sbindir)/fsck.ext3
223         for i in $(MANPAGES); do \
224                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
225         done
226         for i in $(FMANPAGES); do \
227                 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
228         done
229         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
230                         $(DESTDIR)$(root_sbindir)/fsck.ext3
231
232 clean:
233         $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
234                 e2fsck.shared e2fsck.profiled flushb e2fsck.8
235         $(RM) -rf profiled
236
237 mostlyclean: clean
238 distclean: clean
239         $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
240
241 # +++ Dependency line eater +++
242
243 # Makefile dependencies follow.  This must be the last section in
244 # the Makefile.in file
245 #
246 e2fsck.o: $(srcdir)/e2fsck.c $(srcdir)/e2fsck.h \
247  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
248  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
249  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
250  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
251  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
252  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
253 dict.o: $(srcdir)/dict.c $(srcdir)/dict.h
254 super.o: $(srcdir)/super.c $(top_srcdir)/lib/uuid/uuid.h $(srcdir)/e2fsck.h \
255  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
256  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
257  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
258  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
259  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
260  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
261 pass1.o: $(srcdir)/pass1.c $(srcdir)/e2fsck.h \
262  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
263  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
264  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
265  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
266  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
267  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h \
268  $(srcdir)/problem.h
269 pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \
270  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
271  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
272  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
273  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
274  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
275  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/dict.h
276 pass2.o: $(srcdir)/pass2.c $(srcdir)/e2fsck.h \
277  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
278  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
279  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
280  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
281  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
282  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/dict.h
283 pass3.o: $(srcdir)/pass3.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/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
287  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
288  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
289  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
290 pass4.o: $(srcdir)/pass4.c $(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/ext2_fs.h \
293  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
294  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
295  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
296  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
297 pass5.o: $(srcdir)/pass5.c $(srcdir)/e2fsck.h \
298  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
299  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
300  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
301  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
302  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
303  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
304 journal.o: $(srcdir)/journal.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
305  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
306  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
307  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
308  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
309  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
310  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
311  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
312  $(srcdir)/problem.h $(top_srcdir)/lib/uuid/uuid.h
313 recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.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/ext2_fs.h \
316  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
317  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
318  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
319  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
320  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
321 revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
322  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
323  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
324  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
325  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
326  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
327  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
328  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
329 badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
330  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
331  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
332  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
333  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
334  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
335  $(srcdir)/profile.h prof_err.h
336 util.o: $(srcdir)/util.c $(srcdir)/e2fsck.h \
337  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
338  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
339  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
340  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
341  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
342  $(srcdir)/profile.h prof_err.h
343 unix.o: $(srcdir)/unix.c $(top_srcdir)/lib/et/com_err.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/ext2_fs.h \
346  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
347  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
348  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
349  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(top_srcdir)/version.h
350 dirinfo.o: $(srcdir)/dirinfo.c $(srcdir)/e2fsck.h \
351  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
352  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
353  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
354  $(top_builddir)/lib/ext2fs/ext2_err.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
357 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(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/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
361  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
362  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
363  $(srcdir)/profile.h prof_err.h
364 ehandler.o: $(srcdir)/ehandler.c $(srcdir)/e2fsck.h \
365  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
366  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
367  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
368  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
369  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
370  $(srcdir)/profile.h prof_err.h
371 problem.o: $(srcdir)/problem.c $(srcdir)/e2fsck.h \
372  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
373  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
374  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
375  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
376  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
377  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/problemP.h
378 message.o: $(srcdir)/message.c $(srcdir)/e2fsck.h \
379  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
380  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
381  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
382  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
383  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
384  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
385 swapfs.o: $(srcdir)/swapfs.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/ext2_io.h \
389  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
390  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
391  $(srcdir)/profile.h prof_err.h
392 ea_refcount.o: $(srcdir)/ea_refcount.c $(srcdir)/e2fsck.h \
393  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
394  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
395  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
396  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
397  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
398  $(srcdir)/profile.h prof_err.h
399 rehash.o: $(srcdir)/rehash.c $(srcdir)/e2fsck.h \
400  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
401  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
402  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
403  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
404  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
405  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
406 region.o: $(srcdir)/region.c $(srcdir)/e2fsck.h \
407  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
408  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
409  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
410  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
411  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
412  $(srcdir)/profile.h prof_err.h
413 profile.o: $(srcdir)/profile.c $(srcdir)/profile.h prof_err.h \
414  $(top_srcdir)/lib/et/com_err.h
415 prof_err.o: prof_err.c