1# 2# Makefile for e2fsck 3# 4 5srcdir = @srcdir@ 6top_srcdir = @top_srcdir@ 7VPATH = @srcdir@ 8top_builddir = .. 9my_dir = e2fsck 10INSTALL = @INSTALL@ 11MKDIR_P = @MKDIR_P@ 12 13@MCONFIG@ 14 15PROGS= e2fsck 16MANPAGES= e2fsck.8 17FMANPAGES= e2fsck.conf.5 18 19LIBS= $(LIBSUPPORT) $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) \ 20 $(LIBINTL) $(LIBE2P) $(LIBMAGIC) $(SYSLIBS) 21DEPLIBS= $(DEPLIBSUPPORT) $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(DEPLIBBLKID) \ 22 $(DEPLIBUUID) $(DEPLIBE2P) 23 24STATIC_LIBS= $(STATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) \ 25 $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P) \ 26 $(LIBMAGIC) $(SYSLIBS) 27STATIC_DEPLIBS= $(DEPSTATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) \ 28 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \ 29 $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P) 30 31PROFILED_LIBS= $(PROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \ 32 $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) \ 33 $(PROFILED_LIBE2P) $(LIBINTL) $(LIBMAGIC) $(SYSLIBS) 34PROFILED_DEPLIBS= $(DEPPROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \ 35 $(DEPPROFILED_LIBCOM_ERR) $(DEPPROFILED_LIBBLKID) \ 36 $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P) 37 38COMPILE_ET= _ET_DIR_OVERRIDE=$(srcdir)/../lib/et/et ../lib/et/compile_et 39 40.c.o: 41 $(E) " CC $<" 42 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@ 43 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $< 44 $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $< 45@PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $< 46 47# 48# Flags for doing mtrace --- uncomment to produce mtracing e2fsck 49# Note: The optimization flags must include -g 50# 51#MTRACE= -DMTRACE 52#MTRACE_OBJ= mtrace.o 53#MTRACE_SRC= $(srcdir)/mtrace.c 54#OPT= -g 55 56# 57# Flags for doing mcheck --- uncomment to produce mchecking e2fsck 58# Note: The optimization flags must include -g 59# 60#MCHECK= -DMCHECK 61 62OBJS= unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \ 63 pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \ 64 dx_dirinfo.o ehandler.o problem.o message.o quota.o recovery.o \ 65 region.o revoke.o ea_refcount.o rehash.o \ 66 logfile.o sigcatcher.o $(MTRACE_OBJ) readahead.o \ 67 extents.o encrypted_files.o 68 69PROFILED_OBJS= 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 profiled/quota.o \ 75 profiled/recovery.o profiled/region.o profiled/revoke.o \ 76 profiled/ea_refcount.o profiled/rehash.o \ 77 profiled/logfile.o profiled/sigcatcher.o \ 78 profiled/readahead.o profiled/extents.o \ 79 profiled/encrypted_files.o 80 81SRCS= $(srcdir)/e2fsck.c \ 82 $(srcdir)/super.c \ 83 $(srcdir)/pass1.c \ 84 $(srcdir)/pass1b.c \ 85 $(srcdir)/pass2.c \ 86 $(srcdir)/pass3.c \ 87 $(srcdir)/pass4.c \ 88 $(srcdir)/pass5.c \ 89 $(srcdir)/journal.c \ 90 $(srcdir)/recovery.c \ 91 $(srcdir)/revoke.c \ 92 $(srcdir)/badblocks.c \ 93 $(srcdir)/util.c \ 94 $(srcdir)/unix.c \ 95 $(srcdir)/dirinfo.c \ 96 $(srcdir)/dx_dirinfo.c \ 97 $(srcdir)/ehandler.c \ 98 $(srcdir)/problem.c \ 99 $(srcdir)/message.c \ 100 $(srcdir)/ea_refcount.c \ 101 $(srcdir)/rehash.c \ 102 $(srcdir)/readahead.c \ 103 $(srcdir)/region.c \ 104 $(srcdir)/sigcatcher.c \ 105 $(srcdir)/logfile.c \ 106 $(srcdir)/quota.c \ 107 $(srcdir)/extents.c \ 108 $(srcdir)/encrypted_files.c \ 109 $(MTRACE_SRC) 110 111all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES) 112 113@PROFILE_CMT@all:: e2fsck.profiled 114 115all-static:: e2fsck.static 116 117e2fsck: $(OBJS) $(DEPLIBS) 118 $(E) " LD $@" 119 $(Q) $(LD) $(ALL_LDFLAGS) $(RDYNAMIC) -o e2fsck $(OBJS) $(LIBS) 120 121e2fsck.static: $(OBJS) $(STATIC_DEPLIBS) 122 $(E) " LD $@" 123 $(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS) 124 125e2fsck.profiled: $(OBJS) $(PROFILED_DEPLIBS) 126 $(E) " LD $@" 127 $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \ 128 $(PROFILED_LIBS) 129 130tst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o 131 $(E) " CC $@" 132 $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(RDYNAMIC) \ 133 $(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher 134 135tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \ 136 $(DEPLIBCOM_ERR) 137 $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) -o tst_problem \ 138 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \ 139 $(LIBINTL) $(SYSLIBS) 140 141tst_refcount: ea_refcount.c $(DEPLIBCOM_ERR) $(LIBEXT2FS) 142 $(E) " LD $@" 143 $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \ 144 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \ 145 $(LIBCOM_ERR) $(LIBEXT2FS) $(SYSLIBS) 146 147tst_logfile: $(srcdir)/logfile.c 148 $(E) " LD $@" 149 $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c \ 150 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM $(SYSLIBS) 151 152tst_region: region.c $(LIBEXT2FS) $(DEPLIBCOM_ERR) 153 $(E) " LD $@" 154 $(Q) $(CC) -o tst_region $(srcdir)/region.c \ 155 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \ 156 $(LIBEXT2FS) $(LIBCOM_ERR) $(SYSLIBS) 157 158fullcheck check:: tst_refcount tst_region tst_problem 159 $(TESTENV) ./tst_refcount 160 $(TESTENV) ./tst_region 161 $(TESTENV) ./tst_problem 162 163extend: extend.o 164 $(E) " LD $@" 165 $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB) 166 167flushb: flushb.o 168 $(E) " LD $@" 169 $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB) 170 171iscan: iscan.o $(DEPLIBS) 172 $(E) " LD $@" 173 $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o $(LIBS) 174 175iscan.static: iscan.o $(STATIC_DEPLIBS) 176 $(E) " LD $@" 177 $(Q) $(LD) $(LDFLAGS_STATIC) -o iscan.static iscan.o $(STATIC_LIBS) 178 179test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \ 180 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR) 181 $(E) " LD $@" 182 $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \ 183 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \ 184 $(ALL_CFLAGS) 185 186profiled: 187@PROFILE_CMT@ $(E) " MKDIR $@" 188@PROFILE_CMT@ $(Q) mkdir profiled 189 190e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in 191 $(E) " SUBST $@" 192 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8 193 194e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in 195 $(E) " SUBST $@" 196 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5 197 198installdirs: 199 $(E) " MKDIR_P $(root_sbindir) $(man8dir)" 200 $(Q) $(MKDIR_P) $(DESTDIR)$(root_sbindir) \ 201 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir) 202 203install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs 204 $(Q) for i in $(PROGS); do \ 205 $(ES) " INSTALL $(root_sbindir)/$$i"; \ 206 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \ 207 done 208 $(Q) for i in ext2 ext3 ext4; do \ 209 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \ 210 (cd $(DESTDIR)$(root_sbindir); \ 211 $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \ 212 done 213 $(Q) for i in $(MANPAGES); do \ 214 for j in $(COMPRESS_EXT); do \ 215 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \ 216 done; \ 217 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \ 218 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \ 219 done 220 $(Q) for i in $(FMANPAGES); do \ 221 for j in $(COMPRESS_EXT); do \ 222 $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \ 223 done; \ 224 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \ 225 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \ 226 done 227 $(Q) for i in ext2 ext3 ext4; do \ 228 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \ 229 (cd $(DESTDIR)$(man8dir); \ 230 $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \ 231 done 232 233install-strip: install 234 $(Q) for i in $(PROGS); do \ 235 $(ES) " STRIP $(root_sbindir)/$$i"; \ 236 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \ 237 done 238 239uninstall: 240 for i in $(PROGS); do \ 241 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \ 242 done 243 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \ 244 $(DESTDIR)$(root_sbindir)/fsck.ext3 \ 245 $(DESTDIR)$(root_sbindir)/fsck.ext4 246 for i in $(MANPAGES); do \ 247 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \ 248 done 249 for i in $(FMANPAGES); do \ 250 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \ 251 done 252 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \ 253 $(DESTDIR)$(root_sbindir)/fsck.ext3 \ 254 $(DESTDIR)$(root_sbindir)/fsck.ext4 255 256clean:: 257 $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \ 258 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \ 259 tst_problem tst_region tst_refcount tst_crc32 \ 260 gen_crc32table e2fsck.conf.5 \ 261 prof_err.c prof_err.h test_profile iscan iscan.static 262 $(RM) -rf profiled 263 264mostlyclean: clean 265distclean: clean 266 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old 267 268# +++ Dependency line eater +++ 269# 270# Makefile dependencies follow. This must be the last section in 271# the Makefile.in file 272# 273e2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \ 274 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 275 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 276 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 277 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 278 $(top_builddir)/lib/ext2fs/ext2_err.h \ 279 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 280 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 281 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 282 $(top_srcdir)/lib/support/dqblk_v2.h \ 283 $(top_srcdir)/lib/support/quotaio_tree.h \ 284 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 285 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 286 $(srcdir)/problem.h 287super.o: $(srcdir)/super.c $(top_builddir)/lib/config.h \ 288 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 289 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 290 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 291 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 292 $(top_builddir)/lib/ext2fs/ext2_err.h \ 293 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 294 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 295 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 296 $(top_srcdir)/lib/support/dqblk_v2.h \ 297 $(top_srcdir)/lib/support/quotaio_tree.h \ 298 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 299 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 300 $(srcdir)/problem.h 301pass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \ 302 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 303 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 304 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 305 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 306 $(top_builddir)/lib/ext2fs/ext2_err.h \ 307 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 308 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 309 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 310 $(top_srcdir)/lib/support/dqblk_v2.h \ 311 $(top_srcdir)/lib/support/quotaio_tree.h \ 312 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 313 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 314 $(top_srcdir)/lib/e2p/e2p.h $(srcdir)/problem.h 315pass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \ 316 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \ 317 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \ 318 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ 319 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 320 $(top_builddir)/lib/ext2fs/ext2_err.h \ 321 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 322 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 323 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 324 $(top_srcdir)/lib/support/dqblk_v2.h \ 325 $(top_srcdir)/lib/support/quotaio_tree.h \ 326 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 327 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 328 $(srcdir)/problem.h $(top_srcdir)/lib/support/dict.h 329pass2.o: $(srcdir)/pass2.c $(top_builddir)/lib/config.h \ 330 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 331 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 332 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 333 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 334 $(top_builddir)/lib/ext2fs/ext2_err.h \ 335 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 336 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 337 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 338 $(top_srcdir)/lib/support/dqblk_v2.h \ 339 $(top_srcdir)/lib/support/quotaio_tree.h \ 340 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 341 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 342 $(srcdir)/problem.h $(top_srcdir)/lib/support/dict.h 343pass3.o: $(srcdir)/pass3.c $(top_builddir)/lib/config.h \ 344 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 345 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 346 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 347 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 348 $(top_builddir)/lib/ext2fs/ext2_err.h \ 349 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 350 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 351 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 352 $(top_srcdir)/lib/support/dqblk_v2.h \ 353 $(top_srcdir)/lib/support/quotaio_tree.h \ 354 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 355 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 356 $(srcdir)/problem.h 357pass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \ 358 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 359 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 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 \ 363 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 364 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 365 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 366 $(top_srcdir)/lib/support/dqblk_v2.h \ 367 $(top_srcdir)/lib/support/quotaio_tree.h \ 368 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 369 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 370 $(srcdir)/problem.h 371pass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \ 372 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 373 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 374 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 375 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 376 $(top_builddir)/lib/ext2fs/ext2_err.h \ 377 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 378 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 379 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 380 $(top_srcdir)/lib/support/dqblk_v2.h \ 381 $(top_srcdir)/lib/support/quotaio_tree.h \ 382 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 383 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 384 $(srcdir)/problem.h 385journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \ 386 $(top_builddir)/lib/dirpaths.h $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \ 387 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 388 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 389 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 390 $(top_builddir)/lib/ext2fs/ext2_err.h \ 391 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 392 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 393 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 394 $(top_srcdir)/lib/support/dqblk_v2.h \ 395 $(top_srcdir)/lib/support/quotaio_tree.h \ 396 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 397 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 398 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(srcdir)/problem.h 399recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h \ 400 $(top_builddir)/lib/config.h $(top_builddir)/lib/dirpaths.h \ 401 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \ 402 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ 403 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ 404 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \ 405 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 406 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 407 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 408 $(top_srcdir)/lib/support/dqblk_v2.h \ 409 $(top_srcdir)/lib/support/quotaio_tree.h \ 410 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 411 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 412 $(top_srcdir)/lib/ext2fs/kernel-jbd.h 413revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h \ 414 $(top_builddir)/lib/config.h $(top_builddir)/lib/dirpaths.h \ 415 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \ 416 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ 417 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ 418 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \ 419 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 420 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 421 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 422 $(top_srcdir)/lib/support/dqblk_v2.h \ 423 $(top_srcdir)/lib/support/quotaio_tree.h \ 424 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 425 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 426 $(top_srcdir)/lib/ext2fs/kernel-jbd.h 427badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \ 428 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \ 429 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \ 430 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ 431 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 432 $(top_builddir)/lib/ext2fs/ext2_err.h \ 433 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 434 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 435 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 436 $(top_srcdir)/lib/support/dqblk_v2.h \ 437 $(top_srcdir)/lib/support/quotaio_tree.h \ 438 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 439 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 440util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \ 441 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 442 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 443 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 444 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 445 $(top_builddir)/lib/ext2fs/ext2_err.h \ 446 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 447 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 448 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 449 $(top_srcdir)/lib/support/dqblk_v2.h \ 450 $(top_srcdir)/lib/support/quotaio_tree.h \ 451 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 452 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 453unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \ 454 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \ 455 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 456 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/support/plausible.h \ 457 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ 458 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 459 $(top_builddir)/lib/ext2fs/ext2_err.h \ 460 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 461 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 462 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 463 $(top_srcdir)/lib/support/dqblk_v2.h \ 464 $(top_srcdir)/lib/support/quotaio_tree.h \ 465 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 466 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 467 $(srcdir)/problem.h $(srcdir)/jfs_user.h \ 468 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/version.h 469dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \ 470 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 471 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 472 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 473 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 474 $(top_builddir)/lib/ext2fs/ext2_err.h \ 475 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 476 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 477 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 478 $(top_srcdir)/lib/support/dqblk_v2.h \ 479 $(top_srcdir)/lib/support/quotaio_tree.h \ 480 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 481 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 482 $(top_srcdir)/lib/ext2fs/tdb.h 483dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \ 484 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 485 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 486 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 487 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 488 $(top_builddir)/lib/ext2fs/ext2_err.h \ 489 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 490 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 491 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 492 $(top_srcdir)/lib/support/dqblk_v2.h \ 493 $(top_srcdir)/lib/support/quotaio_tree.h \ 494 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 495 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 496ehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \ 497 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 498 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 499 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 500 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 501 $(top_builddir)/lib/ext2fs/ext2_err.h \ 502 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 503 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 504 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 505 $(top_srcdir)/lib/support/dqblk_v2.h \ 506 $(top_srcdir)/lib/support/quotaio_tree.h \ 507 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 508 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 509problem.o: $(srcdir)/problem.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 \ 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 \ 519 $(top_srcdir)/lib/support/quotaio_tree.h \ 520 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 521 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 522 $(srcdir)/problem.h $(srcdir)/problemP.h 523message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \ 524 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/support/quotaio.h \ 525 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 526 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 527 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 528 $(top_builddir)/lib/ext2fs/ext2_err.h \ 529 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 530 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/dqblk_v2.h \ 531 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/e2fsck.h \ 532 $(top_srcdir)/lib/support/profile.h $(top_builddir)/lib/support/prof_err.h \ 533 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 534 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 535 $(srcdir)/problem.h 536ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \ 537 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 538 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 539 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 540 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 541 $(top_builddir)/lib/ext2fs/ext2_err.h \ 542 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 543 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 544 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 545 $(top_srcdir)/lib/support/dqblk_v2.h \ 546 $(top_srcdir)/lib/support/quotaio_tree.h \ 547 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 548 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 549rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \ 550 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 551 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 552 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 553 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 554 $(top_builddir)/lib/ext2fs/ext2_err.h \ 555 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 556 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 557 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 558 $(top_srcdir)/lib/support/dqblk_v2.h \ 559 $(top_srcdir)/lib/support/quotaio_tree.h \ 560 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 561 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 562 $(srcdir)/problem.h $(top_srcdir)/lib/support/sort_r.h 563readahead.o: $(srcdir)/readahead.c $(top_builddir)/lib/config.h \ 564 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 565 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 566 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 567 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 568 $(top_builddir)/lib/ext2fs/ext2_err.h \ 569 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 570 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 571 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 572 $(top_srcdir)/lib/support/dqblk_v2.h \ 573 $(top_srcdir)/lib/support/quotaio_tree.h \ 574 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 575 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 576region.o: $(srcdir)/region.c $(top_builddir)/lib/config.h \ 577 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 578 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 579 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 580 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 581 $(top_builddir)/lib/ext2fs/ext2_err.h \ 582 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 583 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 584 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 585 $(top_srcdir)/lib/support/dqblk_v2.h \ 586 $(top_srcdir)/lib/support/quotaio_tree.h \ 587 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 588 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 589sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \ 590 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 591 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 592 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 593 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 594 $(top_builddir)/lib/ext2fs/ext2_err.h \ 595 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 596 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 597 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 598 $(top_srcdir)/lib/support/dqblk_v2.h \ 599 $(top_srcdir)/lib/support/quotaio_tree.h \ 600 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 601 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 602logfile.o: $(srcdir)/logfile.c $(top_builddir)/lib/config.h \ 603 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 604 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 605 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 606 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 607 $(top_builddir)/lib/ext2fs/ext2_err.h \ 608 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 609 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 610 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 611 $(top_srcdir)/lib/support/dqblk_v2.h \ 612 $(top_srcdir)/lib/support/quotaio_tree.h \ 613 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 614 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h 615quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \ 616 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 617 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 618 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 619 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 620 $(top_builddir)/lib/ext2fs/ext2_err.h \ 621 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 622 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 623 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 624 $(top_srcdir)/lib/support/dqblk_v2.h \ 625 $(top_srcdir)/lib/support/quotaio_tree.h \ 626 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 627 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 628 $(srcdir)/problem.h 629extents.o: $(srcdir)/extents.c $(top_builddir)/lib/config.h \ 630 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 631 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 632 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 633 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 634 $(top_builddir)/lib/ext2fs/ext2_err.h \ 635 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 636 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 637 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 638 $(top_srcdir)/lib/support/dqblk_v2.h \ 639 $(top_srcdir)/lib/support/quotaio_tree.h \ 640 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 641 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 642 $(srcdir)/problem.h 643encrypted_files.o: $(srcdir)/encrypted_files.c $(top_builddir)/lib/config.h \ 644 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 645 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 646 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 647 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 648 $(top_builddir)/lib/ext2fs/ext2_err.h \ 649 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \ 650 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/profile.h \ 651 $(top_builddir)/lib/support/prof_err.h $(top_srcdir)/lib/support/quotaio.h \ 652 $(top_srcdir)/lib/support/dqblk_v2.h \ 653 $(top_srcdir)/lib/support/quotaio_tree.h \ 654 $(top_srcdir)/lib/ext2fs/fast_commit.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 655 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \ 656 $(srcdir)/problem.h $(top_srcdir)/lib/ext2fs/rbtree.h 657