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