]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - e2fsck/Makefile.in
Merge branch 'maint' into next
[thirdparty/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)
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 STATIC_DEPLIBS= $(DEPSTATIC_LIBQUOTA) $(STATIC_LIBEXT2FS) \
26 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
27 $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
28
29 PROFILED_LIBS= $(PROFILED_LIBQUOTA) $(PROFILED_LIBEXT2FS) \
30 $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) \
31 $(PROFILED_LIBE2P) $(LIBINTL)
32 PROFILED_DEPLIBS= $(DEPPROFILED_LIBQUOTA) $(PROFILED_LIBEXT2FS) \
33 $(DEPPROFILED_LIBCOM_ERR) $(DEPPROFILED_LIBBLKID) \
34 $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
35
36 COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree
37
38 .c.o:
39 $(E) " CC $<"
40 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
41 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
42 @PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
43
44 #
45 # Flags for using Checker
46 # Note: The optimization flags must include -g
47 #
48 #MCHECK= -checker
49 #LIBS= $(LIBCOM_ERR) $(LIB_EXT2FS) $(CHECKLIB)
50 #DEPLIBS= $(LIBCOM_ERR) $(LIB_EXT2FS)
51 #CHECKLIB= /usr/lib/libchecker.o
52
53 #
54 # Flags for doing mtrace --- uncomment to produce mtracing e2fsck
55 # Note: The optimization flags must include -g
56 #
57 #MTRACE= -DMTRACE
58 #MTRACE_OBJ= mtrace.o
59 #MTRACE_SRC= $(srcdir)/mtrace.c
60 #OPT= -g
61
62 #
63 # Flags for doing mcheck --- uncomment to produce mchecking e2fsck
64 # Note: The optimization flags must include -g
65 #
66 #MCHECK= -DMCHECK
67
68 OBJS= dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \
69 pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \
70 dx_dirinfo.o ehandler.o problem.o message.o quota.o recovery.o \
71 region.o revoke.o ea_refcount.o rehash.o profile.o prof_err.o \
72 logfile.o sigcatcher.o $(MTRACE_OBJ)
73
74 PROFILED_OBJS= profiled/dict.o profiled/unix.o profiled/e2fsck.o \
75 profiled/super.o profiled/pass1.o profiled/pass1b.o \
76 profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
77 profiled/journal.o profiled/badblocks.o profiled/util.o \
78 profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \
79 profiled/message.o profiled/problem.o profiled/quota.o \
80 profiled/recovery.o profiled/region.o profiled/revoke.o \
81 profiled/ea_refcount.o profiled/rehash.o profiled/profile.o \
82 profiled/prof_err.o profiled/logfile.o \
83 profiled/sigcatcher.o
84
85 SRCS= $(srcdir)/e2fsck.c \
86 $(srcdir)/dict.c \
87 $(srcdir)/super.c \
88 $(srcdir)/pass1.c \
89 $(srcdir)/pass1b.c \
90 $(srcdir)/pass2.c \
91 $(srcdir)/pass3.c \
92 $(srcdir)/pass4.c \
93 $(srcdir)/pass5.c \
94 $(srcdir)/journal.c \
95 $(srcdir)/recovery.c \
96 $(srcdir)/revoke.c \
97 $(srcdir)/badblocks.c \
98 $(srcdir)/util.c \
99 $(srcdir)/unix.c \
100 $(srcdir)/dirinfo.c \
101 $(srcdir)/dx_dirinfo.c \
102 $(srcdir)/ehandler.c \
103 $(srcdir)/problem.c \
104 $(srcdir)/message.c \
105 $(srcdir)/ea_refcount.c \
106 $(srcdir)/rehash.c \
107 $(srcdir)/region.c \
108 $(srcdir)/profile.c \
109 $(srcdir)/sigcatcher.c \
110 $(srcdir)/logfile.c \
111 prof_err.c \
112 $(srcdir)/quota.c \
113 $(MTRACE_SRC)
114
115 all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES)
116
117 @PROFILE_CMT@all:: e2fsck.profiled
118
119 prof_err.c prof_err.h: prof_err.et
120 $(E) " COMPILE_ET prof_err.et"
121 $(Q) $(COMPILE_ET) $(srcdir)/prof_err.et
122
123 e2fsck: $(OBJS) $(DEPLIBS)
124 $(E) " LD $@"
125 $(Q) $(LD) $(ALL_LDFLAGS) $(RDYNAMIC) -o e2fsck $(OBJS) $(LIBS)
126
127 e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
128 $(E) " LD $@"
129 $(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS)
130
131 e2fsck.profiled: $(OBJS) $(PROFILED_DEPLIBS)
132 $(E) " LD $@"
133 $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
134 $(PROFILED_LIBS)
135
136 tst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o
137 $(E) " CC $@"
138 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) $(RDYNAMIC) \
139 $(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher
140
141 tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \
142 $(DEPLIBCOM_ERR)
143 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_problem \
144 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \
145 $(LIBINTL)
146
147 tst_refcount: ea_refcount.c $(DEPLIBCOM_ERR)
148 $(E) " LD $@"
149 $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
150 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(LIBEXT2FS)
151
152 tst_logfile: $(srcdir)/logfile.c
153 $(E) " LD $@"
154 $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c $(ALL_CFLAGS) \
155 -DTEST_PROGRAM
156
157 tst_region: region.c $(DEPLIBCOM_ERR)
158 $(E) " LD $@"
159 $(Q) $(CC) -o tst_region $(srcdir)/region.c \
160 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR)
161
162 check:: tst_refcount tst_region tst_problem
163 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_refcount
164 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_region
165 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_problem
166
167 extend: extend.o
168 $(E) " LD $@"
169 $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
170
171 flushb: flushb.o
172 $(E) " LD $@"
173 $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
174
175 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
176 $(E) " LD $@"
177 $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
178
179 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
180 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
181 $(E) " LD $@"
182 $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
183 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
184 $(ALL_CFLAGS)
185
186 profiled:
187 @PROFILE_CMT@ $(E) " MKDIR $@"
188 @PROFILE_CMT@ $(Q) mkdir profiled
189
190 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
191 $(E) " SUBST $@"
192 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
193
194 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
195 $(E) " SUBST $@"
196 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
197
198 installdirs:
199 $(E) " MKINSTALLDIRS $(root_sbindir) $(man8dir)"
200 $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
201 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
202
203 install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
204 $(Q) for i in $(PROGS); do \
205 $(ES) " INSTALL $(root_sbindir)/$$i"; \
206 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
207 done
208 $(Q) for i in ext2 ext3 ext4 ext4dev; do \
209 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \
210 (cd $(DESTDIR)$(root_sbindir); \
211 $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
212 done
213 $(Q) for i in $(MANPAGES); do \
214 for j in $(COMPRESS_EXT); do \
215 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
216 done; \
217 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \
218 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
219 done
220 $(Q) for i in $(FMANPAGES); do \
221 for j in $(COMPRESS_EXT); do \
222 $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
223 done; \
224 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \
225 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
226 done
227 $(Q) for i in ext2 ext3 ext4 ext4dev; do \
228 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \
229 (cd $(DESTDIR)$(man8dir); \
230 $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
231 done
232
233 install-strip: install
234 $(Q) for i in $(PROGS); do \
235 $(ES) " STRIP $(root_sbindir)/$$i"; \
236 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
237 done
238
239 uninstall:
240 for i in $(PROGS); do \
241 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
242 done
243 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
244 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
245 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
246 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
247 for i in $(MANPAGES); do \
248 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
249 done
250 for i in $(FMANPAGES); do \
251 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
252 done
253 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
254 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
255 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
256 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
257
258 clean:
259 $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
260 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
261 tst_problem tst_region tst_refcount e2fsck.conf.5 \
262 prof_err.c prof_err.h test_profile
263 $(RM) -rf profiled
264
265 mostlyclean: clean
266 distclean: clean
267 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
268
269 # +++ Dependency line eater +++
270 #
271 # Makefile dependencies follow. This must be the last section in
272 # the Makefile.in file
273 #
274 e2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \
275 $(top_builddir)/lib/dirpaths.h $(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/ext3_extents.h \
278 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
279 $(top_builddir)/lib/ext2fs/ext2_err.h \
280 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
281 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
282 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
283 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
284 $(srcdir)/problem.h
285 dict.o: $(srcdir)/dict.c $(top_builddir)/lib/config.h \
286 $(top_builddir)/lib/dirpaths.h $(srcdir)/dict.h
287 super.o: $(srcdir)/super.c $(top_builddir)/lib/config.h \
288 $(top_builddir)/lib/dirpaths.h $(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 $(top_srcdir)/lib/quota/mkquota.h \
295 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
296 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
297 $(srcdir)/problem.h
298 pass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \
299 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
300 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
301 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
302 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
303 $(top_builddir)/lib/ext2fs/ext2_err.h \
304 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
305 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
306 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
307 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
308 $(srcdir)/problem.h
309 pass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \
310 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
311 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
312 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
313 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
314 $(top_builddir)/lib/ext2fs/ext2_err.h \
315 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
316 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
317 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
318 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
319 $(srcdir)/problem.h $(srcdir)/dict.h
320 pass2.o: $(srcdir)/pass2.c $(top_builddir)/lib/config.h \
321 $(top_builddir)/lib/dirpaths.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/ext3_extents.h \
324 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
325 $(top_builddir)/lib/ext2fs/ext2_err.h \
326 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
327 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
328 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
329 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
330 $(srcdir)/problem.h $(srcdir)/dict.h
331 pass3.o: $(srcdir)/pass3.c $(top_builddir)/lib/config.h \
332 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
333 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
334 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
335 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
336 $(top_builddir)/lib/ext2fs/ext2_err.h \
337 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
338 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
339 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
340 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
341 $(srcdir)/problem.h
342 pass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \
343 $(top_builddir)/lib/dirpaths.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/ext3_extents.h \
346 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
347 $(top_builddir)/lib/ext2fs/ext2_err.h \
348 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
349 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
350 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
351 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
352 $(srcdir)/problem.h
353 pass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \
354 $(top_builddir)/lib/dirpaths.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/quota/mkquota.h \
361 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
362 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
363 $(srcdir)/problem.h
364 journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
365 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
366 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
367 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
368 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
369 $(top_builddir)/lib/ext2fs/ext2_err.h \
370 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
371 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
372 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
373 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
374 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
375 $(top_srcdir)/lib/ext2fs/kernel-list.h $(srcdir)/problem.h
376 recovery.o: $(srcdir)/recovery.c $(top_builddir)/lib/config.h \
377 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(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/ext3_extents.h \
380 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
381 $(top_builddir)/lib/ext2fs/ext2_err.h \
382 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
383 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
384 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
385 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
386 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
387 $(top_srcdir)/lib/ext2fs/kernel-list.h
388 revoke.o: $(srcdir)/revoke.c $(top_builddir)/lib/config.h \
389 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
390 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
391 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
392 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
393 $(top_builddir)/lib/ext2fs/ext2_err.h \
394 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
395 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
396 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
397 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
398 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
399 $(top_srcdir)/lib/ext2fs/kernel-list.h
400 badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \
401 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
402 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
403 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
404 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
405 $(top_builddir)/lib/ext2fs/ext2_err.h \
406 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
407 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
408 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
409 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
410 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
411 $(top_builddir)/lib/dirpaths.h $(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 $(top_srcdir)/lib/quota/mkquota.h \
418 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
419 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
420 unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \
421 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \
422 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
423 $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
424 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
425 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
426 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
427 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
428 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
429 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
430 $(srcdir)/problem.h $(top_srcdir)/version.h
431 dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \
432 $(top_builddir)/lib/dirpaths.h $(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 $(top_srcdir)/lib/quota/mkquota.h \
439 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
440 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
441 $(top_srcdir)/lib/ext2fs/tdb.h
442 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \
443 $(top_builddir)/lib/dirpaths.h $(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/ext3_extents.h \
446 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
447 $(top_builddir)/lib/ext2fs/ext2_err.h \
448 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
449 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
450 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
451 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
452 ehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \
453 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
454 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
455 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
456 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
457 $(top_builddir)/lib/ext2fs/ext2_err.h \
458 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
459 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
460 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
461 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
462 problem.o: $(srcdir)/problem.c $(top_builddir)/lib/config.h \
463 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
464 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
465 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
466 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
467 $(top_builddir)/lib/ext2fs/ext2_err.h \
468 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
469 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
470 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
471 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
472 $(srcdir)/problem.h $(srcdir)/problemP.h
473 message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \
474 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
475 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
476 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
477 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
478 $(top_builddir)/lib/ext2fs/ext2_err.h \
479 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
480 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
481 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
482 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
483 $(srcdir)/problem.h
484 ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \
485 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
486 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
487 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
488 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
489 $(top_builddir)/lib/ext2fs/ext2_err.h \
490 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
491 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
492 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
493 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
494 rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \
495 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
496 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
497 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
498 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
499 $(top_builddir)/lib/ext2fs/ext2_err.h \
500 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
501 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
502 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
503 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
504 $(srcdir)/problem.h
505 region.o: $(srcdir)/region.c $(top_builddir)/lib/config.h \
506 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
507 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
508 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
509 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
510 $(top_builddir)/lib/ext2fs/ext2_err.h \
511 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
512 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
513 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
514 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
515 profile.o: $(srcdir)/profile.c $(top_builddir)/lib/config.h \
516 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
517 $(srcdir)/profile.h prof_err.h
518 sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \
519 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
520 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
521 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
522 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
523 $(top_builddir)/lib/ext2fs/ext2_err.h \
524 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
525 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
526 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
527 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
528 logfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \
529 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
530 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
531 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
532 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
533 $(top_builddir)/lib/ext2fs/ext2_err.h \
534 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
535 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
536 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
537 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h
538 prof_err.o: prof_err.c
539 quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
540 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
541 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
542 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
543 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
544 $(top_builddir)/lib/ext2fs/ext2_err.h \
545 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
546 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
547 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
548 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
549 $(srcdir)/problem.h $(top_srcdir)/lib/quota/quotaio.h