1# 2# Makefile for e2fsck 3# 4 5srcdir = @srcdir@ 6top_srcdir = @top_srcdir@ 7VPATH = @srcdir@ 8top_builddir = .. 9my_dir = e2fsck 10INSTALL = @INSTALL@ 11 12@MCONFIG@ 13 14PROGS= e2fsck 15MANPAGES= e2fsck.8 16FMANPAGES= e2fsck.conf.5 17 18LIBS= $(LIBSUPPORT) $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBBLKID) $(LIBUUID) \ 19 $(LIBINTL) $(LIBE2P) $(LIBMAGIC) $(SYSLIBS) 20DEPLIBS= $(DEPLIBSUPPORT) $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(DEPLIBBLKID) \ 21 $(DEPLIBUUID) $(DEPLIBE2P) 22 23STATIC_LIBS= $(STATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) \ 24 $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(LIBINTL) $(STATIC_LIBE2P) \ 25 $(LIBMAGIC) $(SYSLIBS) 26STATIC_DEPLIBS= $(DEPSTATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) \ 27 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBBLKID) \ 28 $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBE2P) 29 30PROFILED_LIBS= $(PROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \ 31 $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBBLKID) $(PROFILED_LIBUUID) \ 32 $(PROFILED_LIBE2P) $(LIBINTL) $(LIBMAGIC) $(SYSLIBS) 33PROFILED_DEPLIBS= $(DEPPROFILED_LIBSUPPORT) $(PROFILED_LIBEXT2FS) \ 34 $(DEPPROFILED_LIBCOM_ERR) $(DEPPROFILED_LIBBLKID) \ 35 $(DEPPROFILED_LIBUUID) $(DEPPROFILED_LIBE2P) 36 37COMPILE_ET= _ET_DIR_OVERRIDE=$(srcdir)/../lib/et/et ../lib/et/compile_et 38 39.c.o: 40 $(E) " CC $<" 41 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@ 42 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $< 43 $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $< 44@PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $< 45 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 61OBJS= unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \ 62 pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \ 63 dx_dirinfo.o ehandler.o problem.o message.o quota.o recovery.o \ 64 region.o revoke.o ea_refcount.o rehash.o \ 65 logfile.o sigcatcher.o $(MTRACE_OBJ) readahead.o \ 66 extents.o 67 68PROFILED_OBJS= profiled/unix.o profiled/e2fsck.o \ 69 profiled/super.o profiled/pass1.o profiled/pass1b.o \ 70 profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \ 71 profiled/journal.o profiled/badblocks.o profiled/util.o \ 72 profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \ 73 profiled/message.o profiled/problem.o profiled/quota.o \ 74 profiled/recovery.o profiled/region.o profiled/revoke.o \ 75 profiled/ea_refcount.o profiled/rehash.o \ 76 profiled/logfile.o profiled/sigcatcher.o \ 77 profiled/readahead.o profiled/extents.o 78 79SRCS= $(srcdir)/e2fsck.c \ 80 $(srcdir)/super.c \ 81 $(srcdir)/pass1.c \ 82 $(srcdir)/pass1b.c \ 83 $(srcdir)/pass2.c \ 84 $(srcdir)/pass3.c \ 85 $(srcdir)/pass4.c \ 86 $(srcdir)/pass5.c \ 87 $(srcdir)/journal.c \ 88 $(srcdir)/recovery.c \ 89 $(srcdir)/revoke.c \ 90 $(srcdir)/badblocks.c \ 91 $(srcdir)/util.c \ 92 $(srcdir)/unix.c \ 93 $(srcdir)/dirinfo.c \ 94 $(srcdir)/dx_dirinfo.c \ 95 $(srcdir)/ehandler.c \ 96 $(srcdir)/problem.c \ 97 $(srcdir)/message.c \ 98 $(srcdir)/ea_refcount.c \ 99 $(srcdir)/rehash.c \ 100 $(srcdir)/readahead.c \ 101 $(srcdir)/region.c \ 102 $(srcdir)/sigcatcher.c \ 103 $(srcdir)/logfile.c \ 104 $(srcdir)/quota.c \ 105 $(srcdir)/extents.c \ 106 $(MTRACE_SRC) 107 108all:: profiled $(PROGS) e2fsck $(MANPAGES) $(FMANPAGES) 109 110@PROFILE_CMT@all:: e2fsck.profiled 111 112e2fsck: $(OBJS) $(DEPLIBS) 113 $(E) " LD $@" 114 $(Q) $(LD) $(ALL_LDFLAGS) $(RDYNAMIC) -o e2fsck $(OBJS) $(LIBS) 115 116e2fsck.static: $(OBJS) $(STATIC_DEPLIBS) 117 $(E) " LD $@" 118 $(Q) $(LD) $(LDFLAGS_STATIC) -o e2fsck.static $(OBJS) $(STATIC_LIBS) 119 120e2fsck.profiled: $(OBJS) $(PROFILED_DEPLIBS) 121 $(E) " LD $@" 122 $(Q) $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \ 123 $(PROFILED_LIBS) 124 125tst_sigcatcher: $(srcdir)/sigcatcher.c sigcatcher.o 126 $(E) " CC $@" 127 $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(RDYNAMIC) \ 128 $(srcdir)/sigcatcher.c -DDEBUG -o tst_sigcatcher 129 130tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \ 131 $(DEPLIBCOM_ERR) 132 $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) -o tst_problem \ 133 $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \ 134 $(LIBINTL) $(SYSLIBS) 135 136tst_refcount: ea_refcount.c $(DEPLIBCOM_ERR) 137 $(E) " LD $@" 138 $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \ 139 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \ 140 $(LIBCOM_ERR) $(LIBEXT2FS) $(SYSLIBS) 141 142tst_logfile: $(srcdir)/logfile.c 143 $(E) " LD $@" 144 $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c \ 145 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM $(SYSLIBS) 146 147tst_region: region.c $(DEPLIBCOM_ERR) 148 $(E) " LD $@" 149 $(Q) $(CC) -o tst_region $(srcdir)/region.c \ 150 $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \ 151 $(LIBCOM_ERR) $(SYSLIBS) 152 153fullcheck check:: tst_refcount tst_region tst_problem 154 $(TESTENV) ./tst_refcount 155 $(TESTENV) ./tst_region 156 $(TESTENV) ./tst_problem 157 158extend: extend.o 159 $(E) " LD $@" 160 $(Q) $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB) 161 162flushb: flushb.o 163 $(E) " LD $@" 164 $(Q) $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB) 165 166iscan: iscan.o util.o ehandler.o $(DEPLIBS) 167 $(E) " LD $@" 168 $(Q) $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS) 169 170test_profile: $(srcdir)/profile.c profile_helpers.o argv_parse.o \ 171 prof_err.o profile.h $(DEPSTATIC_LIBCOM_ERR) 172 $(E) " LD $@" 173 $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \ 174 profile_helpers.o argv_parse.o $(STATIC_LIBCOM_ERR) \ 175 $(ALL_CFLAGS) 176 177profiled: 178@PROFILE_CMT@ $(E) " MKDIR $@" 179@PROFILE_CMT@ $(Q) mkdir profiled 180 181e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in 182 $(E) " SUBST $@" 183 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.8.in e2fsck.8 184 185e2fsck.conf.5: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.conf.5.in 186 $(E) " SUBST $@" 187 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/e2fsck.conf.5.in e2fsck.conf.5 188 189installdirs: 190 $(E) " MKDIR_P $(root_sbindir) $(man8dir)" 191 $(Q) $(MKDIR_P) $(DESTDIR)$(root_sbindir) \ 192 $(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir) 193 194install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs 195 $(Q) for i in $(PROGS); do \ 196 $(ES) " INSTALL $(root_sbindir)/$$i"; \ 197 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \ 198 done 199 $(Q) for i in ext2 ext3 ext4; do \ 200 $(ES) " LINK $(root_sbindir)/fsck.$$i"; \ 201 (cd $(DESTDIR)$(root_sbindir); \ 202 $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \ 203 done 204 $(Q) for i in $(MANPAGES); do \ 205 for j in $(COMPRESS_EXT); do \ 206 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \ 207 done; \ 208 $(ES) " INSTALL_DATA $(man8dir)/$$i"; \ 209 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \ 210 done 211 $(Q) for i in $(FMANPAGES); do \ 212 for j in $(COMPRESS_EXT); do \ 213 $(RM) -f $(DESTDIR)$(man5dir)/$$i.$$j; \ 214 done; \ 215 $(ES) " INSTALL_DATA $(man5dir)/$$i"; \ 216 $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \ 217 done 218 $(Q) for i in ext2 ext3 ext4; do \ 219 $(ES) " LINK $(man8dir)/fsck.$$i.8"; \ 220 (cd $(DESTDIR)$(man8dir); \ 221 $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \ 222 done 223 224install-strip: install 225 $(Q) for i in $(PROGS); do \ 226 $(ES) " STRIP $(root_sbindir)/$$i"; \ 227 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \ 228 done 229 230uninstall: 231 for i in $(PROGS); do \ 232 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \ 233 done 234 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \ 235 $(DESTDIR)$(root_sbindir)/fsck.ext3 \ 236 $(DESTDIR)$(root_sbindir)/fsck.ext4 237 for i in $(MANPAGES); do \ 238 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \ 239 done 240 for i in $(FMANPAGES); do \ 241 $(RM) -f $(DESTDIR)$(man5dir)/$$i; \ 242 done 243 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \ 244 $(DESTDIR)$(root_sbindir)/fsck.ext3 \ 245 $(DESTDIR)$(root_sbindir)/fsck.ext4 246 247clean:: 248 $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \ 249 e2fsck.shared e2fsck.profiled flushb e2fsck.8 \ 250 tst_problem tst_region tst_refcount tst_crc32 \ 251 gen_crc32table e2fsck.conf.5 \ 252 prof_err.c prof_err.h test_profile 253 $(RM) -rf profiled 254 255mostlyclean: clean 256distclean: clean 257 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old 258 259# +++ Dependency line eater +++ 260# 261# Makefile dependencies follow. This must be the last section in 262# the Makefile.in file 263# 264e2fsck.o: $(srcdir)/e2fsck.c $(top_builddir)/lib/config.h \ 265 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 266 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 267 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/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 \ 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 \ 274 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 275super.o: $(srcdir)/super.c $(top_builddir)/lib/config.h \ 276 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 277 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 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 \ 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 \ 285 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 286pass1.o: $(srcdir)/pass1.c $(top_builddir)/lib/config.h \ 287 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 288 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 289 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/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 \ 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 \ 296 $(top_srcdir)/lib/support/quotaio_tree.h $(top_srcdir)/lib/e2p/e2p.h \ 297 $(srcdir)/problem.h 298pass1b.o: $(srcdir)/pass1b.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 308 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \ 309 $(top_srcdir)/lib/support/dict.h 310pass2.o: $(srcdir)/pass2.c $(top_builddir)/lib/config.h \ 311 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 312 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 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 \ 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 \ 320 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \ 321 $(top_srcdir)/lib/support/dict.h 322pass3.o: $(srcdir)/pass3.c $(top_builddir)/lib/config.h \ 323 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 324 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 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 \ 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 \ 332 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 333pass4.o: $(srcdir)/pass4.c $(top_builddir)/lib/config.h \ 334 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 335 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 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 \ 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 \ 343 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 344pass5.o: $(srcdir)/pass5.c $(top_builddir)/lib/config.h \ 345 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 346 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 347 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/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 \ 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 \ 354 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 355journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 365 $(top_srcdir)/lib/support/quotaio_tree.h \ 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 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 \ 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 \ 378 $(top_srcdir)/lib/support/quotaio_tree.h \ 379 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 380 $(top_srcdir)/lib/ext2fs/kernel-list.h 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 \ 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 \ 391 $(top_srcdir)/lib/support/quotaio_tree.h \ 392 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ 393 $(top_srcdir)/lib/ext2fs/kernel-list.h 394badblocks.o: $(srcdir)/badblocks.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 404 $(top_srcdir)/lib/support/quotaio_tree.h 405util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \ 406 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 407 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 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 \ 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 \ 415 $(top_srcdir)/lib/support/quotaio_tree.h 416unix.o: $(srcdir)/unix.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 422 $(top_builddir)/lib/ext2fs/ext2_err.h \ 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 \ 427 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \ 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 \ 430 $(top_srcdir)/version.h 431dirinfo.o: $(srcdir)/dirinfo.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 441 $(top_srcdir)/lib/support/quotaio_tree.h $(top_srcdir)/lib/ext2fs/tdb.h 442dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 452 $(top_srcdir)/lib/support/quotaio_tree.h 453ehandler.o: $(srcdir)/ehandler.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 463 $(top_srcdir)/lib/support/quotaio_tree.h 464problem.o: $(srcdir)/problem.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 474 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h \ 475 $(srcdir)/problemP.h 476message.o: $(srcdir)/message.c $(top_builddir)/lib/config.h \ 477 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/support/quotaio.h \ 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 \ 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 \ 485 $(top_srcdir)/lib/support/profile.h $(top_builddir)/lib/support/prof_err.h \ 486 $(srcdir)/problem.h 487ea_refcount.o: $(srcdir)/ea_refcount.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 497 $(top_srcdir)/lib/support/quotaio_tree.h 498rehash.o: $(srcdir)/rehash.c $(top_builddir)/lib/config.h \ 499 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 500 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 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 \ 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 \ 508 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 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 \ 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 520region.o: $(srcdir)/region.c $(top_builddir)/lib/config.h \ 521 $(top_builddir)/lib/dirpaths.h $(srcdir)/e2fsck.h \ 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 \ 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 \ 530 $(top_srcdir)/lib/support/quotaio_tree.h 531sigcatcher.o: $(srcdir)/sigcatcher.c $(top_builddir)/lib/config.h \ 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 \ 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 \ 541 $(top_srcdir)/lib/support/quotaio_tree.h 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 \ 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 \ 552 $(top_srcdir)/lib/support/quotaio_tree.h 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 \ 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 \ 563 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 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 \ 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 \ 574 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/problem.h 575