Makefile.in revision 0eeec8ac61bf1eaa31533b2be825cd75580829c9
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) $(LIBCOM_ERR) $(DEPLIBBLKID) $(DEPLIBUUID) $(DEPLIBE2P)
21
22STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) \
23	$(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P)
24STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
25	$(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
26
27PROFILED_LIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
28	$(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) $(PROFILED_LIBE2P) $(LIBINTL)
29PROFILED_DEPLIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
30	$(DEPPROFILED_LIBBLKID) $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
31
32COMPILE_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
63OBJS= 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
68PROFILED_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/prof_err.o
77
78SRCS= $(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
107all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES)
108
109@PROFILE_CMT@all:: e2fsck.profiled
110
111prof_err.c prof_err.h: prof_err.et
112	@echo "	COMPILE_ET prof_err.et"
113	@$(COMPILE_ET) $(srcdir)/prof_err.et
114
115e2fsck: $(OBJS)  $(DEPLIBS)
116	@echo "	LD $@"
117	@$(LD) $(ALL_LDFLAGS) -o e2fsck $(OBJS) $(LIBS) 
118
119e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
120	@echo "	LD $@"
121	@$(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS) 
122
123e2fsck.profiled: $(PROFILED_OBJS)  $(PROFILED_DEPLIBS)
124	@echo "	LD $@"
125	@$(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
126		$(PROFILED_LIBS) 
127
128gen_crc32table: $(srcdir)/gen_crc32table.c
129	@echo "	CC $@"
130	@$(BUILD_CC) $(BUILD_CFLAGS) -o gen_crc32table \
131		$(srcdir)/gen_crc32table.c
132
133crc32table.h: gen_crc32table
134	@echo "	GEN32TABLE $@"
135	@./gen_crc32table > crc32table.h
136
137tst_crc32: $(srcdir)/crc32.c $(LIBEXT2FS)
138	@$(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_crc32 $(srcdir)/crc32.c \
139		-DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR)
140
141tst_refcount: ea_refcount.c
142	@echo "	LD $@"
143	@$(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
144		$(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(LIBEXT2FS) 
145
146tst_region: region.c
147	@echo "	LD $@"
148	@$(CC) -o tst_region $(srcdir)/region.c \
149		$(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR)
150
151check:: tst_refcount tst_region tst_crc32
152	LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_refcount
153	LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_region
154	LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_crc32
155
156extend: extend.o
157	@echo "	LD $@"
158	@$(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
159
160flushb: flushb.o
161	@echo "	LD $@"
162	@$(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
163
164iscan: iscan.o util.o ehandler.o $(DEPLIBS)
165	@echo "	LD $@"
166	@$(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
167
168test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
169		prof_err.o profile.h $(STATIC_LIBCOM_ERR)
170	@echo "	LD $@"
171	@$(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
172		profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
173		$(ALL_CFLAGS)
174
175profiled:
176@PROFILE_CMT@	@echo "	MKDIR $@"
177@PROFILE_CMT@	@mkdir profiled
178
179e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
180	@echo "	SUBST $@"
181	@$(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
182
183e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
184	@echo "	SUBST $@"
185	@$(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
186
187installdirs:
188	@echo "	MKINSTALLDIRS $(root_sbindir) $(man8dir)"
189	@$(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
190		$(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
191
192install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
193	@for i in $(PROGS); do \
194		echo "	INSTALL $(root_sbindir)/$$i"; \
195		$(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
196	done
197	@echo "	LINK $(root_sbindir)/fsck.ext2"
198	@$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
199			$(DESTDIR)$(root_sbindir)/fsck.ext2
200	@echo "	LINK $(root_sbindir)/fsck.ext3"
201	@$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
202			$(DESTDIR)$(root_sbindir)/fsck.ext3
203	@echo "	LINK $(root_sbindir)/fsck.ext4"
204	@$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
205			$(DESTDIR)$(root_sbindir)/fsck.ext4
206	@echo "	LINK $(root_sbindir)/fsck.ext4dev"
207	@$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
208			$(DESTDIR)$(root_sbindir)/fsck.ext4dev
209	@for i in $(MANPAGES); do \
210		for j in $(COMPRESS_EXT); do \
211			$(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
212		done; \
213		echo "	INSTALL_DATA $(man8dir)/$$i"; \
214		$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
215	done
216	@for i in $(FMANPAGES); do \
217		for j in $(COMPRESS_EXT); do \
218			$(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
219		done; \
220		echo "	INSTALL_DATA $(man5dir)/$$i"; \
221		$(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
222	done
223	@echo "	LINK $(man8dir)/fsck.ext2.8"
224	@$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
225		$(DESTDIR)$(man8dir)/fsck.ext2.8
226	@echo "	LINK $(man8dir)/fsck.ext3.8"
227	@$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
228		$(DESTDIR)$(man8dir)/fsck.ext3.8
229	@echo "	LINK $(man8dir)/fsck.ext4.8"
230	@$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
231		$(DESTDIR)$(man8dir)/fsck.ext4.8
232	@echo "	LINK $(man8dir)/fsck.ext4.8"
233	@$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
234		$(DESTDIR)$(man8dir)/fsck.ext4dev.8
235
236install-strip: install
237	@for i in $(PROGS); do \
238		echo "	STRIP $(root_sbindir)/$$i"; \
239		$(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
240	done
241
242uninstall:
243	for i in $(PROGS); do \
244		$(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
245	done
246	$(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
247		$(DESTDIR)$(root_sbindir)/fsck.ext3 \
248		$(DESTDIR)$(root_sbindir)/fsck.ext4 \
249		$(DESTDIR)$(root_sbindir)/fsck.ext4dev
250	for i in $(MANPAGES); do \
251		$(RM) -f $(DESTDIR)$(man8dir)/$$i; \
252	done
253	for i in $(FMANPAGES); do \
254		$(RM) -f $(DESTDIR)$(man5dir)/$$i; \
255	done
256	$(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
257			$(DESTDIR)$(root_sbindir)/fsck.ext3 \
258			$(DESTDIR)$(root_sbindir)/fsck.ext4 \
259			$(DESTDIR)$(root_sbindir)/fsck.ext4dev
260
261clean:
262	$(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
263		e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
264		tst_crc32 tst_region tst_refcount gen_crc32table \
265		crc32table.h e2fsck.conf.5 prof_err.c prof_err.h \
266		test_profile
267	$(RM) -rf profiled
268
269mostlyclean: clean
270distclean: clean
271	$(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
272
273# +++ Dependency line eater +++
274# 
275# Makefile dependencies follow.  This must be the last section in
276# the Makefile.in file
277#
278e2fsck.o: $(srcdir)/e2fsck.c $(srcdir)/e2fsck.h \
279 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
280 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
281 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
282 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
283 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
284 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
285 $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
286crc32.o: $(srcdir)/crc32.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/ext2_fs.h \
289 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
290 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
291 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
292 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
293 $(srcdir)/profile.h prof_err.h $(srcdir)/crc32defs.h crc32table.h
294gen_crc32table.o: $(srcdir)/gen_crc32table.c $(srcdir)/crc32defs.h
295dict.o: $(srcdir)/dict.c $(srcdir)/dict.h
296super.o: $(srcdir)/super.c $(top_srcdir)/lib/uuid/uuid.h $(srcdir)/e2fsck.h \
297 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
298 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
299 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
300 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
301 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.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
304pass1.o: $(srcdir)/pass1.c $(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/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
308 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
309 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
310 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
311 $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
312pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \
313 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
314 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
315 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
316 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
317 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.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 $(srcdir)/problem.h $(srcdir)/dict.h
320pass2.o: $(srcdir)/pass2.c $(srcdir)/e2fsck.h \
321 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
322 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
323 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
324 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
325 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.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 $(srcdir)/problem.h $(srcdir)/dict.h
328pass3.o: $(srcdir)/pass3.c $(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/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
332 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
333 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.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 $(srcdir)/problem.h
336pass4.o: $(srcdir)/pass4.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/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
340 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
341 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
342 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.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/ext2_fs.h \
347 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
348 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
349 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
350 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
351 $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
352journal.o: $(srcdir)/journal.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
353 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
354 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
355 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
356 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
357 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
358 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
359 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
360 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
361 $(srcdir)/problem.h $(top_srcdir)/lib/uuid/uuid.h
362recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
363 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
364 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
365 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
366 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
367 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.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 $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
370 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
371revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h $(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/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
375 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
376 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
377 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
378 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
379 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
380badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
381 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
382 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
383 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
384 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
385 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
386 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
387 $(srcdir)/profile.h prof_err.h
388util.o: $(srcdir)/util.c $(srcdir)/e2fsck.h \
389 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
390 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
391 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
392 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
393 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
394 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
395 $(srcdir)/profile.h prof_err.h
396unix.o: $(srcdir)/unix.c $(top_srcdir)/lib/et/com_err.h \
397 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
398 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/e2fsck.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 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
404 $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(top_srcdir)/version.h
405dirinfo.o: $(srcdir)/dirinfo.c $(srcdir)/e2fsck.h \
406 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
407 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
408 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
409 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
410 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.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 $(top_srcdir)/lib/uuid/uuid.h \
413 $(top_srcdir)/lib/ext2fs/tdb.h
414dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(srcdir)/e2fsck.h \
415 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
416 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
417 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
418 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
419 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
420 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
421 $(srcdir)/profile.h prof_err.h
422ehandler.o: $(srcdir)/ehandler.c $(srcdir)/e2fsck.h \
423 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
424 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
425 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
426 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
427 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
428 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
429 $(srcdir)/profile.h prof_err.h
430problem.o: $(srcdir)/problem.c $(srcdir)/e2fsck.h \
431 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
432 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
433 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
434 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
435 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
436 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
437 $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/problemP.h
438message.o: $(srcdir)/message.c $(srcdir)/e2fsck.h \
439 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
440 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
441 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
442 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
443 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
444 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
445 $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
446ea_refcount.o: $(srcdir)/ea_refcount.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/ext2_fs.h \
449 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
450 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
451 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
452 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
453 $(srcdir)/profile.h prof_err.h
454rehash.o: $(srcdir)/rehash.c $(srcdir)/e2fsck.h \
455 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
456 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
457 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
458 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
459 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
460 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
461 $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
462region.o: $(srcdir)/region.c $(srcdir)/e2fsck.h \
463 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
464 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
465 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
466 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
467 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
468 $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
469 $(srcdir)/profile.h prof_err.h
470profile.o: $(srcdir)/profile.c $(top_srcdir)/lib/et/com_err.h \
471 $(srcdir)/profile.h prof_err.h
472prof_err.o: prof_err.c
473