blob: 4e78d8c28d1cd329e909f4b06a531aa0f93a7695 [file] [log] [blame]
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001#
2# Makefile for e2fsck
3#
4
5srcdir = @srcdir@
6top_srcdir = @top_srcdir@
7VPATH = @srcdir@
8top_builddir = ..
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00009my_dir = e2fsck
Theodore Ts'o50e1e101997-04-26 13:58:21 +000010INSTALL = @INSTALL@
11LDFLAG_STATIC = @LDFLAG_STATIC@
12
13@MCONFIG@
14
Theodore Ts'o5be8dc21997-12-01 18:24:10 +000015PROGS= e2fsck
Theodore Ts'o50e1e101997-04-26 13:58:21 +000016MANPAGES= e2fsck.8
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000017XTRA_CFLAGS= -DRESOURCE_TRACK
Theodore Ts'o50e1e101997-04-26 13:58:21 +000018
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000019LIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBUUID)
Theodore Ts'o894edb22000-01-18 21:27:12 +000020DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(DEPLIBUUID)
Theodore Ts'o62c06f71997-04-29 14:34:47 +000021
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000022STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBUUID)
Theodore Ts'o894edb22000-01-18 21:27:12 +000023STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(DEPSTATIC_LIBUUID)
Theodore Ts'o62c06f71997-04-29 14:34:47 +000024
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000025PROFILED_LIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) $(PROFILED_LIBUUID)
Theodore Ts'o894edb22000-01-18 21:27:12 +000026PROFILED_DEPLIBS= $(PROFILED_LIBEXT2FS) $(PROFILED_LIBCOM_ERR) \
27 $(DEPPROFILED_LIBUUID)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000028
29.c.o:
Theodore Ts'o74becf31997-04-26 14:37:06 +000030 $(CC) -c $(ALL_CFLAGS) $< -o $@
Theodore Ts'o21c84b71997-04-29 16:15:03 +000031@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
Theodore Ts'o50e1e101997-04-26 13:58:21 +000032
33#
34# Flags for using Checker
35# Note: The optimization flags must include -g
36#
37#MCHECK= -checker
Theodore Ts'o62c06f71997-04-29 14:34:47 +000038#LIBS= $(LIBCOM_ERR) $(LIB_EXT2FS) $(CHECKLIB)
39#DEPLIBS= $(LIBCOM_ERR) $(LIB_EXT2FS)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000040#CHECKLIB= /usr/lib/libchecker.o
41
42#
43# Flags for doing mtrace --- uncomment to produce mtracing e2fsck
44# Note: The optimization flags must include -g
45#
46#MTRACE= -DMTRACE
47#MTRACE_OBJ= mtrace.o
48#MTRACE_SRC= $(srcdir)/mtrace.c
49#OPT= -g
50
51#
52# Flags for doing mcheck --- uncomment to produce mchecking e2fsck
53# Note: The optimization flags must include -g
54#
55#MCHECK= -DMCHECK
56
Theodore Ts'o838e7732002-08-01 12:37:00 -040057OBJS= dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o pass3.o pass4.o \
Theodore Ts'o8fdc9982002-06-25 23:26:34 -040058 pass5.o journal.o swapfs.o badblocks.o util.o dirinfo.o dx_dirinfo.o \
59 ehandler.o problem.o message.o recovery.o region.o revoke.o \
Theodore Ts'ob7a00562002-07-20 00:28:07 -040060 ea_refcount.o rehash.o $(MTRACE_OBJ)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000061
Theodore Ts'o838e7732002-08-01 12:37:00 -040062PROFILED_OBJS= profiled/dict.o profiled/unix.o profiled/e2fsck.o \
63 profiled/super.o profiled/pass1.o profiled/pass1b.o \
Theodore Ts'o62c06f71997-04-29 14:34:47 +000064 profiled/pass2.o profiled/pass3.o profiled/pass4.o profiled/pass5.o \
Theodore Ts'o17390c02000-07-07 04:13:21 +000065 profiled/journal.o profiled/badblocks.o profiled/util.o \
Theodore Ts'o8fdc9982002-06-25 23:26:34 -040066 profiled/dirinfo.o profiled/dx_dirinfo.o profiled/ehandler.o \
67 profiled/message.o profiled/problem.o profiled/swapfs.o \
68 profiled/recovery.o profiled/region.o profiled/revoke.o \
Theodore Ts'ob7a00562002-07-20 00:28:07 -040069 profiled/ea_refcount.o profiled/rehash.o
Theodore Ts'o62c06f71997-04-29 14:34:47 +000070
Theodore Ts'o50e1e101997-04-26 13:58:21 +000071SRCS= $(srcdir)/e2fsck.c \
Theodore Ts'o838e7732002-08-01 12:37:00 -040072 $(srcdir)/dict.c \
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000073 $(srcdir)/super.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000074 $(srcdir)/pass1.c \
75 $(srcdir)/pass1b.c \
76 $(srcdir)/pass2.c \
77 $(srcdir)/pass3.c \
78 $(srcdir)/pass4.c \
79 $(srcdir)/pass5.c \
Theodore Ts'o17390c02000-07-07 04:13:21 +000080 $(srcdir)/journal.c \
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000081 $(srcdir)/recovery.c \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +000082 $(srcdir)/revoke.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000083 $(srcdir)/badblocks.c \
84 $(srcdir)/util.c \
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000085 $(srcdir)/unix.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000086 $(srcdir)/dirinfo.c \
Theodore Ts'o8fdc9982002-06-25 23:26:34 -040087 $(srcdir)/dx_dirinfo.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000088 $(srcdir)/ehandler.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000089 $(srcdir)/problem.c \
Theodore Ts'o5df55d72001-06-11 07:00:04 +000090 $(srcdir)/message.c \
91 $(srcdir)/swapfs.c \
Theodore Ts'o342d8472001-07-02 11:54:09 -040092 $(srcdir)/ea_refcount.c \
Theodore Ts'ob7a00562002-07-20 00:28:07 -040093 $(srcdir)/rehash.c \
Theodore Ts'o55fd07e2001-07-19 16:31:25 -040094 $(srcdir)/region.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000095 $(MTRACE_SRC)
96
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000097all:: profiled $(PROGS) e2fsck.static e2fsck.shared $(MANPAGES)
Theodore Ts'o28ffafb2000-02-08 19:14:02 +000098 @sync
Theodore Ts'o50e1e101997-04-26 13:58:21 +000099
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000100@PROFILE_CMT@all:: e2fsck.profiled
101
102e2fsck: e2fsck.@E2FSCK_TYPE@
103 $(CP) e2fsck.@E2FSCK_TYPE@ e2fsck
104
105e2fsck.static: $(OBJS) $(STATIC_DEPLIBS)
106 $(LD) $(ALL_LDFLAGS) $(LDFLAG_STATIC) -o e2fsck.static $(OBJS) \
107 $(STATIC_LIBS)
108
109e2fsck.shared: $(OBJS) $(DEPLIBS)
110 $(LD) $(ALL_LDFLAGS) -o e2fsck.shared $(OBJS) $(LIBS)
111
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000112e2fsck.profiled: $(PROFILED_OBJS) $(PROFILED_DEPLIBS)
113 $(LD) $(ALL_LDFLAGS) -g -pg -o e2fsck.profiled $(PROFILED_OBJS) \
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000114 $(PROFILED_LIBS)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000115
Theodore Ts'o342d8472001-07-02 11:54:09 -0400116tst_refcount: ea_refcount.c
117 $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
118 $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err
119
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400120tst_region: region.c
121 $(CC) -o tst_region $(srcdir)/region.c \
122 $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err
123
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000124extend: extend.o
Theodore Ts'o74becf31997-04-26 14:37:06 +0000125 $(LD) $(ALL_LDFLAGS) -o extend extend.o $(CHECKLIB)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000126
127flushb: flushb.o
Theodore Ts'o74becf31997-04-26 14:37:06 +0000128 $(LD) $(ALL_LDFLAGS) -o flushb flushb.o $(CHECKLIB)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000129
Theodore Ts'oe3bda782001-08-08 20:50:57 -0400130iscan: iscan.o util.o ehandler.o $(DEPLIBS)
Theodore Ts'o74becf31997-04-26 14:37:06 +0000131 $(LD) $(ALL_LDFLAGS) -o iscan iscan.o util.o ehandler.o $(LIBS)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000132
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000133profiled:
134 mkdir profiled
135
Theodore Ts'o44339bd1997-10-15 02:47:20 +0000136e2fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/e2fsck.8.in
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000137 $(SUBSTITUTE) $(srcdir)/e2fsck.8.in e2fsck.8
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000138
139installdirs:
Theodore Ts'o7e44f241998-04-01 03:16:29 +0000140 $(top_srcdir)/mkinstalldirs $(DESTDIR)$(root_sbindir) \
141 $(DESTDIR)$(man8dir)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000142
143install: $(PROGS) $(MANPAGES) installdirs
144 for i in $(PROGS); do \
Theodore Ts'o7e44f241998-04-01 03:16:29 +0000145 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
146 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000147 done
Theodore Ts'o7e44f241998-04-01 03:16:29 +0000148 $(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
149 $(DESTDIR)$(root_sbindir)/fsck.ext2
Theodore Ts'o1d279212000-05-19 02:38:14 +0000150 $(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
151 $(DESTDIR)$(root_sbindir)/fsck.ext3
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000152 for i in $(MANPAGES); do \
Theodore Ts'ob9f40922002-02-24 03:08:57 -0500153 $(RM) -f $(DESTDIR)$(man8dir)/$$i.gz; \
Theodore Ts'o74becf31997-04-26 14:37:06 +0000154 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000155 done
Theodore Ts'o25813b12002-02-24 03:48:45 -0500156 $(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 $(DESTDIR)$(man8dir)/fsck.ext2.8
157 $(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 $(DESTDIR)$(man8dir)/fsck.ext3.8
Theodore Ts'o74becf31997-04-26 14:37:06 +0000158
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000159uninstall:
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000160 for i in $(PROGS); do \
Theodore Ts'o7e44f241998-04-01 03:16:29 +0000161 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000162 done
Theodore Ts'o1d279212000-05-19 02:38:14 +0000163 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
164 $(DESTDIR)$(root_sbindir)/fsck.ext3
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000165 for i in $(MANPAGES); do \
Theodore Ts'o7e44f241998-04-01 03:16:29 +0000166 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000167 done
Theodore Ts'ob9f40922002-02-24 03:08:57 -0500168 $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
169 $(DESTDIR)$(root_sbindir)/fsck.ext3
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000170
171clean:
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000172 $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \
Theodore Ts'o3ac9f0e1999-07-19 21:02:11 +0000173 e2fsck.shared e2fsck.profiled flushb e2fsck.8
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000174 $(RM) -rf profiled
175
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000176mostlyclean: clean
177distclean: clean
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +0000178 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000179
180# +++ Dependency line eater +++
181#
182# Makefile dependencies follow. This must be the last section in
183# the Makefile.in file
184#
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000185e2fsck.o: $(srcdir)/e2fsck.c $(srcdir)/e2fsck.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000186 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
187 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
188 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
189 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
Theodore Ts'ob7bad612002-08-31 03:00:33 -0400190dict.o: $(srcdir)/dict.c $(srcdir)/dict.h
Theodore Ts'o08b21301997-11-03 19:42:40 +0000191super.o: $(srcdir)/super.c $(top_srcdir)/lib/uuid/uuid.h $(srcdir)/e2fsck.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000192 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
193 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
194 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
195 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000196pass1.o: $(srcdir)/pass1.c $(srcdir)/e2fsck.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000197 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
198 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
199 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400200 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h \
201 $(srcdir)/problem.h
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000202pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o54c637d2001-05-14 11:45:38 +0000203 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000204 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
205 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
Theodore Ts'ob7bad612002-08-31 03:00:33 -0400206 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h $(srcdir)/dict.h
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000207pass2.o: $(srcdir)/pass2.c $(srcdir)/e2fsck.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000208 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
209 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
210 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
211 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
Theodore Ts'o08b21301997-11-03 19:42:40 +0000212pass3.o: $(srcdir)/pass3.c $(srcdir)/e2fsck.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000213 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
214 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
215 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
216 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000217pass4.o: $(srcdir)/pass4.c $(srcdir)/e2fsck.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000218 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
219 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
220 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
221 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
Theodore Ts'o08b21301997-11-03 19:42:40 +0000222pass5.o: $(srcdir)/pass5.c $(srcdir)/e2fsck.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000223 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
224 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
225 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
226 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
Theodore Ts'o96b5cac2001-12-24 15:33:49 -0500227journal.o: $(srcdir)/journal.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
228 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
229 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
230 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
231 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
232 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
233 $(srcdir)/problem.h $(top_srcdir)/lib/uuid/uuid.h
234recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
235 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
236 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
237 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
238 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
239 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
240revoke.o: $(srcdir)/revoke.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
241 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
242 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
243 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
244 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
245 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000246badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o54c637d2001-05-14 11:45:38 +0000247 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000248 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000249 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000250 $(top_srcdir)/lib/ext2fs/bitops.h
251util.o: $(srcdir)/util.c $(srcdir)/e2fsck.h \
252 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
253 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
254 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
255 $(top_srcdir)/lib/ext2fs/bitops.h
256unix.o: $(srcdir)/unix.c $(top_srcdir)/lib/et/com_err.h $(srcdir)/e2fsck.h \
257 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
258 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000259 $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000260 $(srcdir)/problem.h $(top_srcdir)/version.h
261dirinfo.o: $(srcdir)/dirinfo.c $(srcdir)/e2fsck.h \
262 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
263 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
264 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
265 $(top_srcdir)/lib/ext2fs/bitops.h
Theodore Ts'ob7bad612002-08-31 03:00:33 -0400266dx_dirinfo.o: $(srcdir)/dx_dirinfo.c $(srcdir)/e2fsck.h \
267 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
268 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
269 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
270 $(top_srcdir)/lib/ext2fs/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000271ehandler.o: $(srcdir)/ehandler.c $(srcdir)/e2fsck.h \
272 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
273 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
274 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
275 $(top_srcdir)/lib/ext2fs/bitops.h
276problem.o: $(srcdir)/problem.c $(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/et/com_err.h \
279 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
280 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h $(srcdir)/problemP.h
Theodore Ts'o16f095e2001-06-13 21:40:58 +0000281message.o: $(srcdir)/message.c $(srcdir)/e2fsck.h \
282 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
283 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
284 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
285 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
286swapfs.o: $(srcdir)/swapfs.c $(top_srcdir)/lib/et/com_err.h \
287 $(srcdir)/e2fsck.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
288 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
289 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
290 $(top_srcdir)/lib/ext2fs/bitops.h
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400291ea_refcount.o: $(srcdir)/ea_refcount.c $(srcdir)/e2fsck.h \
292 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
293 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
294 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
295 $(top_srcdir)/lib/ext2fs/bitops.h
Theodore Ts'ob7bad612002-08-31 03:00:33 -0400296rehash.o: $(srcdir)/rehash.c $(srcdir)/e2fsck.h \
297 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
298 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
299 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
300 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/problem.h
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400301region.o: $(srcdir)/region.c $(srcdir)/e2fsck.h \
302 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
303 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
304 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
305 $(top_srcdir)/lib/ext2fs/bitops.h