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