Whamcloud - gitweb
Merge branch 'maint' into next
[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 FMANPAGES=      e2fsck.conf.5
18 XTRA_CFLAGS=    -DRESOURCE_TRACK -I.
19
20 LIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) $(LIBINTL)
21 DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(DEPLIBBLKID) $(DEPLIBUUID)
22
23 STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) \
24         $(STATIC_LIBUUID) $(LIBINTL)
25 STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
26         $(DEPSTATIC_LIBUUID)
27
28 PROFILED_LIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
29         $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) $(LIBINTL)
30 PROFILED_DEPLIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
31         $(DEPPROFILED_LIBBLKID) $(DEPPROFILED_LIBUUID)
32
33 COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree
34
35 .c.o:
36         @echo " CC $<"
37         @$(CC) -c $(ALL_CFLAGS) $< -o $@
38 @PROFILE_CMT@   @$(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
64 OBJS= dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o pass3.o pass4.o \
65         pass5.o journal.o badblocks.o util.o dirinfo.o dx_dirinfo.o \
66         ehandler.o problem.o message.o recovery.o region.o revoke.o \
67         ea_refcount.o rehash.o profile.o prof_err.o $(MTRACE_OBJ)
68
69 PROFILED_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/prof_err.o
78
79 SRCS= $(srcdir)/e2fsck.c \
80         $(srcdir)/dict.c \
81         $(srcdir)/super.c \
82         $(srcdir)/pass1.c \
83         $(srcdir)/pass1b.c \
84         $(srcdir)/pass2.c \
85         $(srcdir)/pass3.c \
86         $(srcdir)/pass4.c \
87         $(srcdir)/pass5.c \
88         $(srcdir)/journal.c \
89         $(srcdir)/recovery.c \
90         $(srcdir)/revoke.c \
91         $(srcdir)/badblocks.c \
92         $(srcdir)/util.c \
93         $(srcdir)/unix.c \
94         $(srcdir)/dirinfo.c \
95         $(srcdir)/dx_dirinfo.c \
96         $(srcdir)/ehandler.c \
97         $(srcdir)/problem.c \
98         $(srcdir)/message.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 $(MANPAGES) $(FMANPAGES)
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: $(OBJS)  $(DEPLIBS)
115         @echo " LD $@"
116         @$(LD) $(ALL_LDFLAGS) -o e2fsck $(OBJS) $(LIBS) 
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.profiled: $(PROFILED_OBJS)  $(PROFILED_DEPLIBS)
124         @echo " LD $@"
125         @$(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
126                 $(PROFILED_LIBS) 
127
128 tst_refcount: ea_refcount.c
129         @echo " LD $@"
130         @$(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
131                 $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err
132
133 tst_region: region.c
134         @echo " LD $@"
135         @$(CC) -o tst_region $(srcdir)/region.c \
136                 $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err
137
138 extend: extend.o
139         @echo " LD $@"
140         @$(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
141
142 flushb: flushb.o
143         @echo " LD $@"
144         @$(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
145
146 iscan: iscan.o util.o ehandler.o $(DEPLIBS)
147         @echo " LD $@"
148         @$(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
149
150 test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
151                 prof_err.o profile.h $(STATIC_LIBCOM_ERR)
152         @echo " LD $@"
153         @$(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
154                 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
155                 $(ALL_CFLAGS)
156
157 profiled:
158 @PROFILE_CMT@   @echo " MKDIR $@"
159 @PROFILE_CMT@   @mkdir profiled
160
161 e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
162         @echo " SUBST $@"
163         @$(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
164
165 e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
166         @echo " SUBST $@"
167         @$(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
168
169 installdirs:
170         @echo " MKINSTALLDIRS $(root_sbindir) $(man8dir)"
171         @$(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
172                 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
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         @for i in $(FMANPAGES); do \
193                 for j in $(COMPRESS_EXT); do \
194                         $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
195                 done; \
196                 echo "  INSTALL_DATA $(man5dir)/$$i"; \
197                 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
198         done
199         @echo " LINK $(man8dir)/fsck.ext2.8"
200         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
201                 $(DESTDIR)$(man8dir)/fsck.ext2.8
202         @echo " LINK $(man8dir)/fsck.ext3.8"
203         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
204                 $(DESTDIR)$(man8dir)/fsck.ext3.8
205
206 install-strip: install
207         @for i in $(PROGS); do \
208                 echo "  STRIP $(root_sbindir)/$$i"; \
209                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
210         done
211
212 uninstall:
213         for i in $(PROGS); do \
214                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
215         done
216         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
217                 $(DESTDIR)$(root_sbindir)/fsck.ext3
218         for i in $(MANPAGES); do \
219                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
220         done
221         for i in $(FMANPAGES); do \
222                 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
223         done
224         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
225                         $(DESTDIR)$(root_sbindir)/fsck.ext3
226
227 clean:
228         $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
229                 e2fsck.shared e2fsck.profiled flushb e2fsck.8
230         $(RM) -rf profiled
231
232 mostlyclean: clean
233 distclean: clean
234         $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
235
236 # +++ Dependency line eater +++
237
238 # Makefile dependencies follow.  This must be the last section in
239 # the Makefile.in file
240 #
241 e2fsck.o: $(srcdir)/e2fsck.c $(srcdir)/e2fsck.h \
242  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
243  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
244  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
245  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
246  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
247  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
248 dict.o: $(srcdir)/dict.c $(srcdir)/dict.h
249 super.o: $(srcdir)/super.c $(top_srcdir)/lib/uuid/uuid.h $(srcdir)/e2fsck.h \
250  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
251  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
252  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
253  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
254  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
255  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
256 pass1.o: $(srcdir)/pass1.c $(srcdir)/e2fsck.h \
257  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
258  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
259  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
260  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
261  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
262  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h \
263  $(srcdir)/problem.h
264 pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \
265  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
266  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
267  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
268  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
269  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
270  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/dict.h
271 pass2.o: $(srcdir)/pass2.c $(srcdir)/e2fsck.h \
272  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
273  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
274  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
275  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
276  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
277  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/dict.h
278 pass3.o: $(srcdir)/pass3.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/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
282  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
283  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
284  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
285 pass4.o: $(srcdir)/pass4.c $(srcdir)/e2fsck.h \
286  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
287  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
288  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
289  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
290  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
291  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
292 pass5.o: $(srcdir)/pass5.c $(srcdir)/e2fsck.h \
293  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
294  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
295  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
296  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
297  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
298  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
299 journal.o: $(srcdir)/journal.c $(srcdir)/jfs_user.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/ext2_fs.h \
302  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
303  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
304  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
305  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
306  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
307  $(srcdir)/problem.h $(top_srcdir)/lib/uuid/uuid.h
308 recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
309  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
310  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
311  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
312  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
313  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
314  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
315  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
316 revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
317  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
318  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
319  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
320  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
321  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
322  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
323  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
324 badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
325  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
326  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
327  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
328  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
329  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
330  $(srcdir)/profile.h prof_err.h
331 util.o: $(srcdir)/util.c $(srcdir)/e2fsck.h \
332  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
333  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
334  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
335  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
336  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
337  $(srcdir)/profile.h prof_err.h
338 unix.o: $(srcdir)/unix.c $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
339  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
340  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
341  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
342  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
343  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
344  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(top_srcdir)/version.h
345 dirinfo.o: $(srcdir)/dirinfo.c $(srcdir)/e2fsck.h \
346  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
347  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
348  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
349  $(top_builddir)/lib/ext2fs/ext2_err.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
352 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(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/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
356  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
357  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
358  $(srcdir)/profile.h prof_err.h
359 ehandler.o: $(srcdir)/ehandler.c $(srcdir)/e2fsck.h \
360  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
361  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
362  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
363  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
364  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
365  $(srcdir)/profile.h prof_err.h
366 problem.o: $(srcdir)/problem.c $(srcdir)/e2fsck.h \
367  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
368  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
369  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
370  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
371  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
372  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/problemP.h
373 message.o: $(srcdir)/message.c $(srcdir)/e2fsck.h \
374  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
375  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
376  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
377  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
378  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
379  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
380 ea_refcount.o: $(srcdir)/ea_refcount.c $(srcdir)/e2fsck.h \
381  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
382  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
383  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
384  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
385  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
386  $(srcdir)/profile.h prof_err.h
387 rehash.o: $(srcdir)/rehash.c $(srcdir)/e2fsck.h \
388  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
389  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
390  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
391  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
392  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
393  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
394 region.o: $(srcdir)/region.c $(srcdir)/e2fsck.h \
395  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
396  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
397  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
398  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
399  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
400  $(srcdir)/profile.h prof_err.h
401 profile.o: $(srcdir)/profile.c $(srcdir)/profile.h prof_err.h \
402  $(top_srcdir)/lib/et/com_err.h
403 prof_err.o: prof_err.c