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