1997-04-26 21:58:21 +08:00
|
|
|
#
|
|
|
|
# Makefile for e2fsck
|
|
|
|
#
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
top_builddir = ..
|
1997-04-29 22:53:37 +08:00
|
|
|
my_dir = e2fsck
|
1997-04-26 21:58:21 +08:00
|
|
|
INSTALL = @INSTALL@
|
|
|
|
LDFLAG_STATIC = @LDFLAG_STATIC@
|
|
|
|
|
|
|
|
@MCONFIG@
|
|
|
|
|
Many files:
dblist.c (ext2fs_get_num_dirs): Make ext2fs_get_num_dirs more paranoid
about validating the directory counts from the block group
information.
all files: Don't include stdlib.h anymore; include it in ext2_fs.h,
since that file requires stdlib.h
ChangeLog, Makefile.in, dirinfo.c:
dirinfo.c (e2fsck_add_dir_info): Use ext2fs_get_num_dirs instead of
e2fsck_get_num_dirs, which has been removed.
Makefile.in (PROGS): Remove @EXTRA_PROGS@, since we don't want to
compile and install flushb.
ChangeLog, configure.in:
Remove @EXTRA_PROGS@, since we aren't using it in 2fsck/Makefile.in anymore
ChangeLog, Makefile.in:
Install debugfs in /sbin, instead of /usr/sbin.
libext2fs.texinfo:
Update version string to be 1.12
Makefile.in:
Fix bug in find script which made the exclusion list, where a '-' was
missing from an -name option.
1997-12-02 02:24:10 +08:00
|
|
|
PROGS= e2fsck
|
1997-04-26 21:58:21 +08:00
|
|
|
MANPAGES= e2fsck.8
|
1997-10-20 09:38:32 +08:00
|
|
|
XTRA_CFLAGS= -DRESOURCE_TRACK
|
1997-04-26 21:58:21 +08:00
|
|
|
|
1997-04-29 22:53:37 +08:00
|
|
|
LIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBUUID)
|
2000-01-19 05:27:12 +08:00
|
|
|
DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(DEPLIBUUID)
|
1997-04-29 22:34:47 +08:00
|
|
|
|
1997-04-29 22:53:37 +08:00
|
|
|
STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBUUID)
|
2000-01-19 05:27:12 +08:00
|
|
|
STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(DEPSTATIC_LIBUUID)
|
1997-04-29 22:34:47 +08:00
|
|
|
|
1997-04-29 22:53:37 +08:00
|
|
|
PROFILED_LIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBUUID)
|
2000-01-19 05:27:12 +08:00
|
|
|
PROFILED_DEPLIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
|
|
|
|
$(DEPPROFILED_LIBUUID)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
.c.o:
|
1997-04-26 22:37:06 +08:00
|
|
|
$(CC) -c $(ALL_CFLAGS) $< -o $@
|
1997-04-30 00:15:03 +08:00
|
|
|
@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Flags for using Checker
|
|
|
|
# Note: The optimization flags must include -g
|
|
|
|
#
|
|
|
|
#MCHECK= -checker
|
1997-04-29 22:34:47 +08:00
|
|
|
#LIBS= $(LIBCOM_ERR) $(LIB_EXT2FS) $(CHECKLIB)
|
|
|
|
#DEPLIBS= $(LIBCOM_ERR) $(LIB_EXT2FS)
|
1997-04-26 21:58:21 +08:00
|
|
|
#CHECKLIB= /usr/lib/libchecker.o
|
|
|
|
|
|
|
|
#
|
|
|
|
# Flags for doing mtrace --- uncomment to produce mtracing e2fsck
|
|
|
|
# Note: The optimization flags must include -g
|
|
|
|
#
|
|
|
|
#MTRACE= -DMTRACE
|
|
|
|
#MTRACE_OBJ= mtrace.o
|
|
|
|
#MTRACE_SRC= $(srcdir)/mtrace.c
|
|
|
|
#OPT= -g
|
|
|
|
|
|
|
|
#
|
|
|
|
# Flags for doing mcheck --- uncomment to produce mchecking e2fsck
|
|
|
|
# Note: The optimization flags must include -g
|
|
|
|
#
|
|
|
|
#MCHECK= -DMCHECK
|
|
|
|
|
Many files:
pass*.c, super.c: Massive changes to avoid using printf and com_err
routines. All diagnostic messages are now routed through the
fix_problem interface.
pass2.c (check_dir_block): Check for duplicate '.' and '..' entries.
problem.c, problem.h: Add new problem codes PR_2_DUP_DOT and
PR_2_DUP_DOT_DOT.
problem.c: Added new problem codes for some of the superblock
corruption checks, and for the pass header messages. ("Pass
1: xxxxx")
util.c (print_resource_track): Now takes a description argument.
super.c, unix.c, e2fsck.c: New files to separate out the
operating-specific operations out from e2fsck.c. e2fsck.c now
contains the global e2fsck context management routines, and
super.c contains the "pass 0" initial validation of the
superblock and global block group descriptors.
pass1.c, pass2.c, pass3.c, pass4.c, pass5.c, util.c: Eliminate
(nearly) all global variables and moved them to the e2fsck
context structure.
problem.c, problem.h: Added new problem codes PR_0_SB_CORRUPT,
PR_0_FS_SIZE_WRONG, PR_0_NO_FRAGMENTS, PR_0_BLOCKS_PER_GROUP,
PR_0_FIRST_DATA_BLOCK
expect.1, expect.2:
Updated tests to align with e2fsck problem.c changes.
1997-10-04 01:48:10 +08:00
|
|
|
OBJS= unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o pass3.o pass4.o \
|
|
|
|
pass5.o swapfs.o badblocks.o util.o dirinfo.o ehandler.o \
|
|
|
|
problem.o message.o $(MTRACE_OBJ)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
Many files:
pass*.c, super.c: Massive changes to avoid using printf and com_err
routines. All diagnostic messages are now routed through the
fix_problem interface.
pass2.c (check_dir_block): Check for duplicate '.' and '..' entries.
problem.c, problem.h: Add new problem codes PR_2_DUP_DOT and
PR_2_DUP_DOT_DOT.
problem.c: Added new problem codes for some of the superblock
corruption checks, and for the pass header messages. ("Pass
1: xxxxx")
util.c (print_resource_track): Now takes a description argument.
super.c, unix.c, e2fsck.c: New files to separate out the
operating-specific operations out from e2fsck.c. e2fsck.c now
contains the global e2fsck context management routines, and
super.c contains the "pass 0" initial validation of the
superblock and global block group descriptors.
pass1.c, pass2.c, pass3.c, pass4.c, pass5.c, util.c: Eliminate
(nearly) all global variables and moved them to the e2fsck
context structure.
problem.c, problem.h: Added new problem codes PR_0_SB_CORRUPT,
PR_0_FS_SIZE_WRONG, PR_0_NO_FRAGMENTS, PR_0_BLOCKS_PER_GROUP,
PR_0_FIRST_DATA_BLOCK
expect.1, expect.2:
Updated tests to align with e2fsck problem.c changes.
1997-10-04 01:48:10 +08:00
|
|
|
PROFILED_OBJS= profiled/unix.o profiled/e2fsck.o profiled/super.o \
|
|
|
|
profiled/pass1.o profiled/pass1b.o \
|
1997-04-29 22:34:47 +08:00
|
|
|
profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
|
|
|
|
profiled/badblocks.o profiled/util.o profiled/dirinfo.o \
|
1997-04-30 00:15:03 +08:00
|
|
|
profiled/ehandler.o profiled/message.o profiled/problem.o \
|
|
|
|
profiled/swapfs.o
|
1997-04-29 22:34:47 +08:00
|
|
|
|
1997-04-26 21:58:21 +08:00
|
|
|
SRCS= $(srcdir)/e2fsck.c \
|
Many files:
pass*.c, super.c: Massive changes to avoid using printf and com_err
routines. All diagnostic messages are now routed through the
fix_problem interface.
pass2.c (check_dir_block): Check for duplicate '.' and '..' entries.
problem.c, problem.h: Add new problem codes PR_2_DUP_DOT and
PR_2_DUP_DOT_DOT.
problem.c: Added new problem codes for some of the superblock
corruption checks, and for the pass header messages. ("Pass
1: xxxxx")
util.c (print_resource_track): Now takes a description argument.
super.c, unix.c, e2fsck.c: New files to separate out the
operating-specific operations out from e2fsck.c. e2fsck.c now
contains the global e2fsck context management routines, and
super.c contains the "pass 0" initial validation of the
superblock and global block group descriptors.
pass1.c, pass2.c, pass3.c, pass4.c, pass5.c, util.c: Eliminate
(nearly) all global variables and moved them to the e2fsck
context structure.
problem.c, problem.h: Added new problem codes PR_0_SB_CORRUPT,
PR_0_FS_SIZE_WRONG, PR_0_NO_FRAGMENTS, PR_0_BLOCKS_PER_GROUP,
PR_0_FIRST_DATA_BLOCK
expect.1, expect.2:
Updated tests to align with e2fsck problem.c changes.
1997-10-04 01:48:10 +08:00
|
|
|
$(srcdir)/super.c \
|
1997-04-26 21:58:21 +08:00
|
|
|
$(srcdir)/pass1.c \
|
|
|
|
$(srcdir)/pass1b.c \
|
|
|
|
$(srcdir)/pass2.c \
|
|
|
|
$(srcdir)/pass3.c \
|
|
|
|
$(srcdir)/pass4.c \
|
|
|
|
$(srcdir)/pass5.c \
|
|
|
|
$(srcdir)/badblocks.c \
|
|
|
|
$(srcdir)/util.c \
|
Many files:
pass*.c, super.c: Massive changes to avoid using printf and com_err
routines. All diagnostic messages are now routed through the
fix_problem interface.
pass2.c (check_dir_block): Check for duplicate '.' and '..' entries.
problem.c, problem.h: Add new problem codes PR_2_DUP_DOT and
PR_2_DUP_DOT_DOT.
problem.c: Added new problem codes for some of the superblock
corruption checks, and for the pass header messages. ("Pass
1: xxxxx")
util.c (print_resource_track): Now takes a description argument.
super.c, unix.c, e2fsck.c: New files to separate out the
operating-specific operations out from e2fsck.c. e2fsck.c now
contains the global e2fsck context management routines, and
super.c contains the "pass 0" initial validation of the
superblock and global block group descriptors.
pass1.c, pass2.c, pass3.c, pass4.c, pass5.c, util.c: Eliminate
(nearly) all global variables and moved them to the e2fsck
context structure.
problem.c, problem.h: Added new problem codes PR_0_SB_CORRUPT,
PR_0_FS_SIZE_WRONG, PR_0_NO_FRAGMENTS, PR_0_BLOCKS_PER_GROUP,
PR_0_FIRST_DATA_BLOCK
expect.1, expect.2:
Updated tests to align with e2fsck problem.c changes.
1997-10-04 01:48:10 +08:00
|
|
|
$(srcdir)/unix.c \
|
1997-04-26 21:58:21 +08:00
|
|
|
$(srcdir)/dirinfo.c \
|
|
|
|
$(srcdir)/ehandler.c \
|
1997-04-30 00:15:03 +08:00
|
|
|
$(srcdir)/problem.c \
|
1997-04-26 21:58:21 +08:00
|
|
|
$(MTRACE_SRC)
|
|
|
|
|
1997-04-29 22:53:37 +08:00
|
|
|
all:: profiled $(PROGS) e2fsck.static e2fsck.shared $(MANPAGES)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
1997-04-29 22:34:47 +08:00
|
|
|
@PROFILE_CMT@all:: e2fsck.profiled
|
|
|
|
|
|
|
|
e2fsck: e2fsck.@E2FSCK_TYPE@
|
|
|
|
$(CP) e2fsck.@E2FSCK_TYPE@ e2fsck
|
|
|
|
|
|
|
|
e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
|
|
|
|
$(LD) $(ALL_LDFLAGS) $(LDFLAG_STATIC) -o e2fsck.static $(OBJS) \
|
|
|
|
$(STATIC_LIBS)
|
|
|
|
|
|
|
|
e2fsck.shared: $(OBJS) $(DEPLIBS)
|
|
|
|
$(LD) $(ALL_LDFLAGS) -o e2fsck.shared $(OBJS) $(LIBS)
|
|
|
|
|
1997-04-30 00:15:03 +08:00
|
|
|
e2fsck.profiled: $(PROFILED_OBJS) $(PROFILED_DEPLIBS)
|
|
|
|
$(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
|
1997-04-29 22:34:47 +08:00
|
|
|
$(PROFILED_LIBS)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
extend: extend.o
|
1997-04-26 22:37:06 +08:00
|
|
|
$(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
flushb: flushb.o
|
1997-04-26 22:37:06 +08:00
|
|
|
$(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
iscan: iscan.o util.o
|
1997-04-26 22:37:06 +08:00
|
|
|
$(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
1997-04-29 22:34:47 +08:00
|
|
|
profiled:
|
|
|
|
mkdir profiled
|
|
|
|
|
1997-10-15 10:47:20 +08:00
|
|
|
e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
|
1997-04-29 22:34:47 +08:00
|
|
|
$(SUBSTITUTE) $(srcdir)/e2fsck.8.in e2fsck.8
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
installdirs:
|
1998-04-01 11:16:29 +08:00
|
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(root_sbindir) \
|
|
|
|
$(DESTDIR)$(man8dir)
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
install: $(PROGS) $(MANPAGES) installdirs
|
|
|
|
for i in $(PROGS); do \
|
1998-04-01 11:16:29 +08:00
|
|
|
$(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
|
|
|
|
$(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
|
1997-04-26 21:58:21 +08:00
|
|
|
done
|
1998-04-01 11:16:29 +08:00
|
|
|
$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
|
|
|
|
$(DESTDIR)$(root_sbindir)/fsck.ext2
|
1997-04-26 21:58:21 +08:00
|
|
|
for i in $(MANPAGES); do \
|
1997-04-26 22:37:06 +08:00
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
|
1997-04-26 21:58:21 +08:00
|
|
|
done
|
1997-04-26 22:37:06 +08:00
|
|
|
|
1997-04-26 21:58:21 +08:00
|
|
|
uninstall:
|
1997-04-30 00:15:03 +08:00
|
|
|
for i in $(PROGS); do \
|
1998-04-01 11:16:29 +08:00
|
|
|
$(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
|
1997-04-30 00:15:03 +08:00
|
|
|
done
|
1998-04-01 11:16:29 +08:00
|
|
|
$(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2
|
1997-04-26 21:58:21 +08:00
|
|
|
for i in $(MANPAGES); do \
|
1998-04-01 11:16:29 +08:00
|
|
|
$(RM) -f $(DESTDIR)$(man8dir)/$$i; \
|
1997-04-26 21:58:21 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
clean:
|
1997-04-29 22:34:47 +08:00
|
|
|
$(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
|
1999-07-20 05:02:11 +08:00
|
|
|
e2fsck.shared e2fsck.profiled flushb e2fsck.8
|
1997-04-29 22:34:47 +08:00
|
|
|
$(RM) -rf profiled
|
|
|
|
|
1997-04-26 21:58:21 +08:00
|
|
|
mostlyclean: clean
|
|
|
|
distclean: clean
|
1999-11-20 02:42:30 +08:00
|
|
|
$(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
|
1997-04-26 21:58:21 +08:00
|
|
|
|
|
|
|
# +++ Dependency line eater +++
|
|
|
|
#
|
|
|
|
# Makefile dependencies follow. This must be the last section in
|
|
|
|
# the Makefile.in file
|
|
|
|
#
|
1998-12-04 00:40:38 +08:00
|
|
|
e2fsck.o: $(srcdir)/e2fsck.c $(srcdir)/e2fsck.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
1997-11-04 03:42:40 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
|
|
|
super.o: $(srcdir)/super.c $(top_srcdir)/lib/uuid/uuid.h $(srcdir)/e2fsck.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1998-12-04 00:40:38 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
1997-11-04 03:42:40 +08:00
|
|
|
pass1.o: $(srcdir)/pass1.c $(srcdir)/e2fsck.h \
|
1998-12-04 00:40:38 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1997-04-30 00:15:03 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
1997-04-30 05:26:48 +08:00
|
|
|
pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \
|
|
|
|
$(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1997-04-30 00:15:03 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
1998-12-04 00:40:38 +08:00
|
|
|
pass2.o: $(srcdir)/pass2.c $(srcdir)/e2fsck.h \
|
1997-11-04 03:42:40 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
|
|
|
pass3.o: $(srcdir)/pass3.c $(srcdir)/e2fsck.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1997-04-30 00:15:03 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
1997-04-29 22:34:47 +08:00
|
|
|
pass4.o: $(srcdir)/pass4.c $(srcdir)/e2fsck.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1997-04-30 00:15:03 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
1997-11-04 03:42:40 +08:00
|
|
|
pass5.o: $(srcdir)/pass5.c $(srcdir)/e2fsck.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1997-11-04 03:42:40 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
|
1997-04-30 05:26:48 +08:00
|
|
|
badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
|
|
|
|
$(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1997-04-30 05:26:48 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h
|
1998-12-04 00:40:38 +08:00
|
|
|
util.o: $(srcdir)/util.c $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
|
|
|
|
$(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
|
|
|
|
$(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h
|
|
|
|
unix.o: $(srcdir)/unix.c $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
|
|
|
|
$(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
|
|
|
|
$(srcdir)/problem.h $(srcdir)/../version.h
|
|
|
|
dirinfo.o: $(srcdir)/dirinfo.c $(srcdir)/e2fsck.h \
|
1997-04-29 22:34:47 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
1997-10-20 08:44:26 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
1997-04-30 05:26:48 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h
|
|
|
|
ehandler.o: $(srcdir)/ehandler.c $(srcdir)/e2fsck.h \
|
1999-07-04 04:37:03 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h
|
1997-04-30 05:26:48 +08:00
|
|
|
problem.o: $(srcdir)/problem.c $(srcdir)/e2fsck.h \
|
1999-07-04 04:37:03 +08:00
|
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
|
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h $(srcdir)/problemP.h
|