Whamcloud - gitweb
Install {mkfs,fsck}.{ext4,ext4dev} binary and man pages
[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) $(LIBE2P)
21 DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(DEPLIBBLKID) $(DEPLIBUUID) $(DEPLIBE2P)
22
23 STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) \
24         $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P)
25 STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
26         $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
27
28 PROFILED_LIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
29         $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) $(PROFILED_LIBE2P) $(LIBINTL)
30 PROFILED_DEPLIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
31         $(DEPPROFILED_LIBBLKID) $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
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) $(FMANPAGES) 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         @echo " LINK $(root_sbindir)/fsck.ext4"
186         @$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
187                         $(DESTDIR)$(root_sbindir)/fsck.ext4
188         @echo " LINK $(root_sbindir)/fsck.ext4dev"
189         @$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
190                         $(DESTDIR)$(root_sbindir)/fsck.ext4dev
191         @for i in $(MANPAGES); do \
192                 for j in $(COMPRESS_EXT); do \
193                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
194                 done; \
195                 echo "  INSTALL_DATA $(man8dir)/$$i"; \
196                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
197         done
198         @for i in $(FMANPAGES); do \
199                 for j in $(COMPRESS_EXT); do \
200                         $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
201                 done; \
202                 echo "  INSTALL_DATA $(man5dir)/$$i"; \
203                 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
204         done
205         @echo " LINK $(man8dir)/fsck.ext2.8"
206         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
207                 $(DESTDIR)$(man8dir)/fsck.ext2.8
208         @echo " LINK $(man8dir)/fsck.ext3.8"
209         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
210                 $(DESTDIR)$(man8dir)/fsck.ext3.8
211         @echo " LINK $(man8dir)/fsck.ext4.8"
212         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
213                 $(DESTDIR)$(man8dir)/fsck.ext4.8
214         @echo " LINK $(man8dir)/fsck.ext4.8"
215         @$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 \
216                 $(DESTDIR)$(man8dir)/fsck.ext4dev.8
217
218 install-strip: install
219         @for i in $(PROGS); do \
220                 echo "  STRIP $(root_sbindir)/$$i"; \
221                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
222         done
223
224 uninstall:
225         for i in $(PROGS); do \
226                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
227         done
228         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
229                 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
230                 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
231                 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
232         for i in $(MANPAGES); do \
233                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
234         done
235         for i in $(FMANPAGES); do \
236                 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
237         done
238         $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
239                         $(DESTDIR)$(root_sbindir)/fsck.ext3 \
240                         $(DESTDIR)$(root_sbindir)/fsck.ext4 \
241                         $(DESTDIR)$(root_sbindir)/fsck.ext4dev
242
243 clean:
244         $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
245                 e2fsck.shared e2fsck.profiled flushb e2fsck.8
246         $(RM) -rf profiled
247
248 mostlyclean: clean
249 distclean: clean
250         $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
251
252 # +++ Dependency line eater +++
253
254 # Makefile dependencies follow.  This must be the last section in
255 # the Makefile.in file
256 #
257 e2fsck.o: $(srcdir)/e2fsck.c $(srcdir)/e2fsck.h \
258  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
259  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
260  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
261  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
262  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
263  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
264 dict.o: $(srcdir)/dict.c $(srcdir)/dict.h
265 super.o: $(srcdir)/super.c $(top_srcdir)/lib/uuid/uuid.h $(srcdir)/e2fsck.h \
266  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
267  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
268  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
269  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
270  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
271  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
272 pass1.o: $(srcdir)/pass1.c $(srcdir)/e2fsck.h \
273  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
274  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
275  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
276  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
277  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
278  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h \
279  $(srcdir)/problem.h
280 pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \
281  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
282  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
283  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
284  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
285  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
286  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/dict.h
287 pass2.o: $(srcdir)/pass2.c $(srcdir)/e2fsck.h \
288  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
289  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
290  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
291  $(top_builddir)/lib/ext2fs/ext2_err.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)/problem.h $(srcdir)/dict.h
294 pass3.o: $(srcdir)/pass3.c $(srcdir)/e2fsck.h \
295  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
296  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
297  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
298  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
299  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
300  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
301 pass4.o: $(srcdir)/pass4.c $(srcdir)/e2fsck.h \
302  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
303  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
304  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
305  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
306  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
307  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
308 pass5.o: $(srcdir)/pass5.c $(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 $(srcdir)/problem.h
315 journal.o: $(srcdir)/journal.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
316  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
317  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
318  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
319  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
320  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
321  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
322  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
323  $(srcdir)/problem.h $(top_srcdir)/lib/uuid/uuid.h
324 recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
325  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
326  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
327  $(top_srcdir)/lib/et/com_err.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 $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
331  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
332 revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.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/ext2_fs.h \
335  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
336  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
337  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
338  $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
339  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
340 badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
341  $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
342  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
343  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
344  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
345  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
346  $(srcdir)/profile.h prof_err.h
347 util.o: $(srcdir)/util.c $(srcdir)/e2fsck.h \
348  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
349  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
350  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
351  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
352  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
353  $(srcdir)/profile.h prof_err.h
354 unix.o: $(srcdir)/unix.c $(top_srcdir)/lib/et/com_err.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/ext2_fs.h \
357  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
358  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
359  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
360  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(top_srcdir)/version.h
361 dirinfo.o: $(srcdir)/dirinfo.c $(srcdir)/e2fsck.h \
362  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
363  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
364  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
365  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
366  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
367  $(srcdir)/profile.h prof_err.h
368 dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(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/ext2_fs.h \
371  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
372  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
373  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
374  $(srcdir)/profile.h prof_err.h
375 ehandler.o: $(srcdir)/ehandler.c $(srcdir)/e2fsck.h \
376  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
377  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
378  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
379  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
380  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
381  $(srcdir)/profile.h prof_err.h
382 problem.o: $(srcdir)/problem.c $(srcdir)/e2fsck.h \
383  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
384  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
385  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
386  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
387  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
388  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h $(srcdir)/problemP.h
389 message.o: $(srcdir)/message.c $(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/ext2_fs.h \
392  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
393  $(top_builddir)/lib/ext2fs/ext2_err.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 $(srcdir)/problem.h
396 ea_refcount.o: $(srcdir)/ea_refcount.c $(srcdir)/e2fsck.h \
397  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
398  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
399  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
400  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
401  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
402  $(srcdir)/profile.h prof_err.h
403 rehash.o: $(srcdir)/rehash.c $(srcdir)/e2fsck.h \
404  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
405  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
406  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
407  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
408  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
409  $(srcdir)/profile.h prof_err.h $(srcdir)/problem.h
410 region.o: $(srcdir)/region.c $(srcdir)/e2fsck.h \
411  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
412  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
413  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
414  $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
415  $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \
416  $(srcdir)/profile.h prof_err.h
417 profile.o: $(srcdir)/profile.c $(srcdir)/profile.h prof_err.h \
418  $(top_srcdir)/lib/et/com_err.h
419 prof_err.o: prof_err.c