]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - e2fsck/Makefile.in
tests: Add to LD_LIBRARY_PATH instead of overriding
[thirdparty/e2fsprogs.git] / e2fsck / Makefile.in
CommitLineData
50e1e10f
TT
1#
2# Makefile for e2fsck
3#
4
5srcdir = @srcdir@
6top_srcdir = @top_srcdir@
7VPATH = @srcdir@
8top_builddir = ..
1e3472c5 9my_dir = e2fsck
50e1e10f 10INSTALL = @INSTALL@
50e1e10f
TT
11
12@MCONFIG@
13
5be8dc21 14PROGS= e2fsck
50e1e10f 15MANPAGES= e2fsck.8
1abdba4b 16FMANPAGES= e2fsck.conf.5
50e1e10f 17
624e4a64 18LIBS= $(LIBQUOTA) $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) \
6c59a665 19 $(LIBINTL) $(LIBE2P) $(SYSLIBS)
624e4a64
AK
20DEPLIBS= $(DEPLIBQUOTA) $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(DEPLIBBLKID) \
21 $(DEPLIBUUID) $(DEPLIBE2P)
22
23STATIC_LIBS= $(STATIC_LIBQUOTA) $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) \
6c59a665
TT
24 $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P) \
25 $(SYSLIBS)
624e4a64
AK
26STATIC_DEPLIBS= $(DEPSTATIC_LIBQUOTA) $(STATIC_LIBEXT2FS) \
27 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \
28 $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P)
29
30PROFILED_LIBS= $(PROFILED_LIBQUOTA) $(PROFILED_LIBEXT2FS) \
31 $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) \
6c59a665 32 $(PROFILED_LIBE2P) $(LIBINTL) $(SYSLIBS)
624e4a64
AK
33PROFILED_DEPLIBS= $(DEPPROFILED_LIBQUOTA) $(PROFILED_LIBEXT2FS) \
34 $(DEPPROFILED_LIBCOM_ERR) $(DEPPROFILED_LIBBLKID) \
35 $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P)
50e1e10f 36
2fa9ba98
TT
37COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree
38
50e1e10f 39.c.o:
c13351f6
TT
40 $(E) " CC $<"
41 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
832cb612 42 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
c13351f6 43@PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
50e1e10f 44
50e1e10f
TT
45#
46# Flags for doing mtrace --- uncomment to produce mtracing e2fsck
47# Note: The optimization flags must include -g
48#
49#MTRACE= -DMTRACE
50#MTRACE_OBJ= mtrace.o
51#MTRACE_SRC= $(srcdir)/mtrace.c
52#OPT= -g
53
54#
55# Flags for doing mcheck --- uncomment to produce mchecking e2fsck
56# Note: The optimization flags must include -g
57#
58#MCHECK= -DMCHECK
59
51d12ceb
TT
60OBJS= crc32.o dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \
61 pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \
624e4a64
AK
62 dx_dirinfo.o ehandler.o problem.o message.o quota.o recovery.o \
63 region.o revoke.o ea_refcount.o rehash.o profile.o prof_err.o \
b0e91c89 64 logfile.o sigcatcher.o $(MTRACE_OBJ)
50e1e10f 65
838e773e
TT
66PROFILED_OBJS= profiled/dict.o profiled/unix.o profiled/e2fsck.o \
67 profiled/super.o profiled/pass1.o profiled/pass1b.o \
62c06f79 68 profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
17390c04 69 profiled/journal.o profiled/badblocks.o profiled/util.o \
8fdc9985 70 profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \
624e4a64 71 profiled/message.o profiled/problem.o profiled/quota.o \
8fdc9985 72 profiled/recovery.o profiled/region.o profiled/revoke.o \
2fa9ba98 73 profiled/ea_refcount.o profiled/rehash.o profiled/profile.o \
b0e91c89
TT
74 profiled/crc32.o profiled/prof_err.o profiled/logfile.o \
75 profiled/sigcatcher.o
62c06f79 76
50e1e10f 77SRCS= $(srcdir)/e2fsck.c \
51d12ceb
TT
78 $(srcdir)/crc32.c \
79 $(srcdir)/gen_crc32table.c \
838e773e 80 $(srcdir)/dict.c \
1b6bf175 81 $(srcdir)/super.c \
50e1e10f
TT
82 $(srcdir)/pass1.c \
83 $(srcdir)/pass1b.c \
84 $(srcdir)/pass2.c \
85 $(srcdir)/pass3.c \
86 $(srcdir)/pass4.c \
87 $(srcdir)/pass5.c \
17390c04 88 $(srcdir)/journal.c \
3b5386dc 89 $(srcdir)/recovery.c \
0e8a9560 90 $(srcdir)/revoke.c \
50e1e10f
TT
91 $(srcdir)/badblocks.c \
92 $(srcdir)/util.c \
1b6bf175 93 $(srcdir)/unix.c \
50e1e10f 94 $(srcdir)/dirinfo.c \
8fdc9985 95 $(srcdir)/dx_dirinfo.c \
50e1e10f 96 $(srcdir)/ehandler.c \
21c84b71 97 $(srcdir)/problem.c \
5df55d7f 98 $(srcdir)/message.c \
342d847d 99 $(srcdir)/ea_refcount.c \
b7a00563 100 $(srcdir)/rehash.c \
55fd07ed 101 $(srcdir)/region.c \
2fa9ba98 102 $(srcdir)/profile.c \
9b3018a8 103 $(srcdir)/sigcatcher.c \
b0e91c89 104 $(srcdir)/logfile.c \
2fa9ba98 105 prof_err.c \
624e4a64 106 $(srcdir)/quota.c \
50e1e10f
TT
107 $(MTRACE_SRC)
108
7e8fe327 109all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES)
50e1e10f 110
62c06f79
TT
111@PROFILE_CMT@all:: e2fsck.profiled
112
2fa9ba98 113prof_err.c prof_err.h: prof_err.et
c13351f6
TT
114 $(E) " COMPILE_ET prof_err.et"
115 $(Q) $(COMPILE_ET) $(srcdir)/prof_err.et
2fa9ba98 116
7e8fe327 117e2fsck: $(OBJS) $(DEPLIBS)
c13351f6 118 $(E) " LD $@"
9b3018a8 119 $(Q) $(LD) $(ALL_LDFLAGS) $(RDYNAMIC) -o e2fsck $(OBJS) $(LIBS)
62c06f79 120
7e8fe327 121e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
c13351f6
TT
122 $(E) " LD $@"
123 $(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS)
62c06f79 124
51fb43dd 125e2fsck.profiled: $(OBJS) $(PROFILED_DEPLIBS)
c13351f6
TT
126 $(E) " LD $@"
127 $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
62c06f79 128 $(PROFILED_LIBS)
50e1e10f 129
51d12ceb 130gen_crc32table: $(srcdir)/gen_crc32table.c
c13351f6 131 $(E) " CC $@"
c1986ecb 132 $(Q) $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o gen_crc32table \
51d12ceb
TT
133 $(srcdir)/gen_crc32table.c
134
135crc32table.h: gen_crc32table
c13351f6
TT
136 $(E) " GEN32TABLE $@"
137 $(Q) ./gen_crc32table > crc32table.h
51d12ceb 138
3df6014a
TT
139tst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o
140 $(E) " CC $@"
9b3018a8
TT
141 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) $(RDYNAMIC) \
142 $(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher
143
a6a1c081
TT
144tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \
145 $(DEPLIBCOM_ERR)
c13351f6 146 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_problem \
de43f224 147 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \
6c59a665 148 $(LIBINTL) $(SYSLIBS)
7494cbfd 149
a6a1c081 150tst_crc32: $(srcdir)/crc32.c $(LIBEXT2FS) $(DEPLIBCOM_ERR)
c13351f6 151 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_crc32 $(srcdir)/crc32.c \
6c59a665 152 -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) $(SYSLIBS)
51d12ceb 153
a6a1c081 154tst_refcount: ea_refcount.c $(DEPLIBCOM_ERR)
c13351f6
TT
155 $(E) " LD $@"
156 $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
6c59a665
TT
157 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(LIBEXT2FS) \
158 $(SYSLIBS)
342d847d 159
b0e91c89
TT
160tst_logfile: $(srcdir)/logfile.c
161 $(E) " LD $@"
162 $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c $(ALL_CFLAGS) \
6c59a665 163 -DTEST_PROGRAM $(SYSLIBS)
b0e91c89 164
a6a1c081 165tst_region: region.c $(DEPLIBCOM_ERR)
c13351f6
TT
166 $(E) " LD $@"
167 $(Q) $(CC) -o tst_region $(srcdir)/region.c \
6c59a665 168 $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) $(SYSLIBS)
55fd07ed 169
7494cbfd 170check:: tst_refcount tst_region tst_crc32 tst_problem
60abcd73
MF
171 $(TESTENV) ./tst_refcount
172 $(TESTENV) ./tst_region
173 $(TESTENV) ./tst_crc32
174 $(TESTENV) ./tst_problem
51d12ceb 175
50e1e10f 176extend: extend.o
c13351f6
TT
177 $(E) " LD $@"
178 $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
50e1e10f
TT
179
180flushb: flushb.o
c13351f6
TT
181 $(E) " LD $@"
182 $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
50e1e10f 183
e3bda783 184iscan: iscan.o util.o ehandler.o $(DEPLIBS)
c13351f6
TT
185 $(E) " LD $@"
186 $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
50e1e10f 187
9a4c209c 188test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \
a6a1c081 189 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR)
c13351f6
TT
190 $(E) " LD $@"
191 $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
9a4c209c
TT
192 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \
193 $(ALL_CFLAGS)
2fa9ba98 194
62c06f79 195profiled:
c13351f6
TT
196@PROFILE_CMT@ $(E) " MKDIR $@"
197@PROFILE_CMT@ $(Q) mkdir profiled
62c06f79 198
44339bdf 199e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
c13351f6
TT
200 $(E) " SUBST $@"
201 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8
50e1e10f 202
1abdba4b 203e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in
c13351f6
TT
204 $(E) " SUBST $@"
205 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5
1abdba4b 206
50e1e10f 207installdirs:
c13351f6
TT
208 $(E) " MKINSTALLDIRS $(root_sbindir) $(man8dir)"
209 $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
1abdba4b 210 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
50e1e10f 211
1f803990 212install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
c13351f6 213 $(Q) for i in $(PROGS); do \
c1986ecb 214 $(ES) " INSTALL $(root_sbindir)/$$i"; \
7e44f242 215 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
50e1e10f 216 done
5aa6c3f6 217 $(Q) for i in ext2 ext3 ext4 ext4dev; do \
c1986ecb 218 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \
5aa6c3f6
TT
219 (cd $(DESTDIR)$(root_sbindir); \
220 $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \
221 done
c13351f6 222 $(Q) for i in $(MANPAGES); do \
482afc44
TT
223 for j in $(COMPRESS_EXT); do \
224 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
225 done; \
c1986ecb 226 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \
74becf3c 227 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
50e1e10f 228 done
c13351f6 229 $(Q) for i in $(FMANPAGES); do \
1abdba4b
TT
230 for j in $(COMPRESS_EXT); do \
231 $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \
232 done; \
c1986ecb 233 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \
1abdba4b
TT
234 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \
235 done
5aa6c3f6 236 $(Q) for i in ext2 ext3 ext4 ext4dev; do \
c1986ecb 237 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \
5aa6c3f6
TT
238 (cd $(DESTDIR)$(man8dir); \
239 $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \
240 done
522798d3
TT
241
242install-strip: install
c13351f6 243 $(Q) for i in $(PROGS); do \
c1986ecb 244 $(ES) " STRIP $(root_sbindir)/$$i"; \
522798d3
TT
245 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
246 done
74becf3c 247
50e1e10f 248uninstall:
21c84b71 249 for i in $(PROGS); do \
7e44f242 250 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
21c84b71 251 done
1d279218 252 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
eda08d45
TT
253 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
254 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
255 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
50e1e10f 256 for i in $(MANPAGES); do \
7e44f242 257 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
50e1e10f 258 done
1abdba4b
TT
259 for i in $(FMANPAGES); do \
260 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \
261 done
b9f40925 262 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
eda08d45
TT
263 $(DESTDIR)$(root_sbindir)/fsck.ext3 \
264 $(DESTDIR)$(root_sbindir)/fsck.ext4 \
265 $(DESTDIR)$(root_sbindir)/fsck.ext4dev
50e1e10f 266
fedfb27f 267clean::
62c06f79 268 $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
51d12ceb 269 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \
7494cbfd 270 tst_problem tst_crc32 tst_region tst_refcount gen_crc32table \
51d12ceb
TT
271 crc32table.h e2fsck.conf.5 prof_err.c prof_err.h \
272 test_profile
62c06f79
TT
273 $(RM) -rf profiled
274
50e1e10f
TT
275mostlyclean: clean
276distclean: clean
5c36a2f8 277 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
50e1e10f
TT
278
279# +++ Dependency line eater +++
280#
281# Makefile dependencies follow. This must be the last section in
282# the Makefile.in file
283#
b0e91c89
TT
284e2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \
285 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
797f5ef1 286 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
287 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
288 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
289 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 290 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
291 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
292 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
293 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
b0e91c89
TT
294crc32.o: $(srcdir)/crc32.c $(top_builddir)/lib/config.h \
295 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
797f5ef1 296 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
297 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
298 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
299 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 300 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
301 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
302 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
303 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/crc32defs.h crc32table.h
b0e91c89
TT
304gen_crc32table.o: $(srcdir)/gen_crc32table.c $(srcdir)/crc32defs.h
305dict.o: $(srcdir)/dict.c $(top_builddir)/lib/config.h \
306 $(top_builddir)/lib/dirpaths.h $(srcdir)/dict.h
307super.o: $(srcdir)/super.c $(top_builddir)/lib/config.h \
308 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
797f5ef1 309 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
310 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
311 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
312 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 313 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
314 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
315 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
316 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
b0e91c89
TT
317pass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \
318 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
797f5ef1 319 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
320 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
321 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
322 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 323 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
324 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
325 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
326 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
d1154eb4 327pass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \
b0e91c89
TT
328 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
329 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
330 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
331 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
332 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 333 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
334 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
335 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
336 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h $(srcdir)/dict.h
b0e91c89
TT
337pass2.o: $(srcdir)/pass2.c $(top_builddir)/lib/config.h \
338 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
797f5ef1 339 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
340 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
341 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
342 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 343 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
344 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
345 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
346 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h $(srcdir)/dict.h
b0e91c89
TT
347pass3.o: $(srcdir)/pass3.c $(top_builddir)/lib/config.h \
348 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
797f5ef1 349 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
350 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
351 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
352 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 353 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
354 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
355 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
356 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
b0e91c89
TT
357pass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \
358 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
96b5cacc 359 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
360 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
361 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
362 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 363 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
364 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
365 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
366 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
b0e91c89
TT
367pass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \
368 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
96b5cacc 369 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
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 \
51d12ceb 373 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
374 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
375 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
376 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
d1154eb4 377journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
b0e91c89
TT
378 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
379 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
380 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
381 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
382 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 383 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
384 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
385 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
386 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
387 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
388 $(srcdir)/problem.h
d1154eb4 389recovery.o: $(srcdir)/recovery.c $(top_builddir)/lib/config.h \
b0e91c89
TT
390 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(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/ext3_extents.h \
393 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
394 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 395 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
396 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
397 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
398 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
399 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
d1154eb4 400revoke.o: $(srcdir)/revoke.c $(top_builddir)/lib/config.h \
b0e91c89
TT
401 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
402 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
403 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
404 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
405 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 406 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
407 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
408 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
409 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
410 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
d1154eb4 411badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \
b0e91c89
TT
412 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
413 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
414 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
415 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
416 $(top_builddir)/lib/ext2fs/ext2_err.h \
e1f08507 417 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
418 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
419 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
420 $(top_srcdir)/lib/../e2fsck/dict.h
b0e91c89
TT
421util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
422 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
797f5ef1 423 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
424 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
425 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
426 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 427 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
428 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
429 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
430 $(top_srcdir)/lib/../e2fsck/dict.h
d1154eb4 431unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \
b0e91c89
TT
432 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \
433 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
434 $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
435 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
436 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 437 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
438 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
439 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
440 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h \
441 $(top_srcdir)/version.h
d1154eb4 442dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \
b0e91c89
TT
443 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
444 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
445 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
446 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
447 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 448 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
449 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
450 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
451 $(top_srcdir)/lib/../e2fsck/dict.h $(top_srcdir)/lib/ext2fs/tdb.h
d1154eb4 452dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \
b0e91c89
TT
453 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
454 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
455 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
456 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
457 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 458 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
459 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
460 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
461 $(top_srcdir)/lib/../e2fsck/dict.h
d1154eb4 462ehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \
b0e91c89
TT
463 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
464 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
465 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
466 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
467 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 468 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
469 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
470 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
471 $(top_srcdir)/lib/../e2fsck/dict.h
d1154eb4 472problem.o: $(srcdir)/problem.c $(top_builddir)/lib/config.h \
b0e91c89
TT
473 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
474 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
475 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
476 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
477 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 478 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
479 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
480 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
481 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h $(srcdir)/problemP.h
d1154eb4 482message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \
b0e91c89
TT
483 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
484 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
485 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
486 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
487 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 488 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
489 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
490 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
491 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
d1154eb4 492ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \
b0e91c89
TT
493 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
494 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
495 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
496 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
497 $(top_builddir)/lib/ext2fs/ext2_err.h \
d1154eb4 498 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
499 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
500 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
501 $(top_srcdir)/lib/../e2fsck/dict.h
b0e91c89
TT
502rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \
503 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
55fd07ed 504 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507
TT
505 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
506 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
507 $(top_builddir)/lib/ext2fs/ext2_err.h \
51d12ceb 508 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
509 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
510 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
511 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h
b0e91c89
TT
512region.o: $(srcdir)/region.c $(top_builddir)/lib/config.h \
513 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
9b3018a8
TT
514 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
515 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
516 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
517 $(top_builddir)/lib/ext2fs/ext2_err.h \
518 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
519 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
520 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
521 $(top_srcdir)/lib/../e2fsck/dict.h
d1154eb4 522profile.o: $(srcdir)/profile.c $(top_builddir)/lib/config.h \
b0e91c89
TT
523 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \
524 $(srcdir)/profile.h prof_err.h
d1154eb4 525sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \
b0e91c89
TT
526 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
527 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
528 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
529 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
530 $(top_builddir)/lib/ext2fs/ext2_err.h \
531 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
532 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
533 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
534 $(top_srcdir)/lib/../e2fsck/dict.h
b0e91c89
TT
535logfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \
536 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
537 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
538 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
539 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
540 $(top_builddir)/lib/ext2fs/ext2_err.h \
d1154eb4 541 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
d37178bb
TT
542 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
543 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
544 $(top_srcdir)/lib/../e2fsck/dict.h
2fa9ba98 545prof_err.o: prof_err.c
5c15bf5f
TT
546quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
547 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \
548 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
549 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
550 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
551 $(top_builddir)/lib/ext2fs/ext2_err.h \
552 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
553 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/quotaio.h \
554 $(top_srcdir)/lib/quota/dqblk_v2.h $(top_srcdir)/lib/quota/quotaio_tree.h \
555 $(top_srcdir)/lib/../e2fsck/dict.h $(srcdir)/problem.h