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