blob: 773791b276ee9c58d9528d05ace00541f2db8967 [file] [log] [blame]
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001srcdir = @srcdir@
2top_srcdir = @top_srcdir@
3VPATH = @srcdir@
4top_builddir = ../..
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00005my_dir = lib/ext2fs
Theodore Ts'o50e1e101997-04-26 13:58:21 +00006INSTALL = @INSTALL@
7
8@MCONFIG@
9
Theodore Ts'o917e8752002-08-13 15:16:47 -040010@DEBUGFS_CMT@DEBUGFS_LIB_OBJS = bb_compat.o cmp_bitmaps.o fileio.o \
Theodore Ts'oe5b16432002-08-17 21:11:29 -040011@DEBUGFS_CMT@ inode_io.o namei.o write_bb_file.o
Theodore Ts'o30ae14c2001-06-13 22:38:56 +000012
Theodore Ts'o917e8752002-08-13 15:16:47 -040013@RESIZER_CMT@RESIZE_LIB_OBJS = rs_bitmap.o dupfs.o test_io.o
Theodore Ts'o30ae14c2001-06-13 22:38:56 +000014
15@IMAGER_CMT@E2IMAGE_LIB_OBJS = imager.o
16
17OBJS= $(DEBUGFS_LIB_OBJS) $(RESIZE_LIB_OBJS) $(E2IMAGE_LIB_OBJS) \
18 ext2_err.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000019 alloc.o \
Theodore Ts'oef344e12003-11-21 09:02:21 -050020 alloc_sb.o \
Theodore Ts'o8bd0c952002-01-03 03:29:19 -050021 alloc_stats.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000022 alloc_tables.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000023 badblocks.o \
24 bb_inode.o \
25 bitmaps.o \
26 bitops.o \
27 block.o \
Theodore Ts'o30fab291997-10-25 22:37:42 +000028 bmap.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000029 check_desc.o \
30 closefs.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000031 dblist.o \
32 dblist_dir.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000033 dirblock.o \
Theodore Ts'o52783e02002-03-11 15:04:45 -050034 dirhash.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000035 dir_iterate.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000036 expanddir.o \
Theodore Ts'o342d8472001-07-02 11:54:09 -040037 ext_attr.o \
Theodore Ts'ode23aa12000-08-19 17:00:47 +000038 finddev.o \
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000039 flushb.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000040 freefs.o \
Theodore Ts'o3034f622001-06-11 15:17:45 +000041 gen_bitmap.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000042 get_pathname.o \
43 getsize.o \
Theodore Ts'o93d5c382003-05-21 17:28:29 -040044 getsectsize.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000045 icount.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000046 initialize.o \
47 inline.o \
48 inode.o \
49 ismounted.o \
50 link.o \
51 llseek.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000052 lookup.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000053 mkdir.o \
Theodore Ts'od3cd93c2000-10-24 18:33:16 +000054 mkjournal.o \
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000055 native.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000056 newdir.o \
57 openfs.o \
58 read_bb.o \
59 read_bb_file.o \
60 rw_bitmaps.o \
61 swapfs.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000062 unix_io.o \
63 unlink.o \
Theodore Ts'o521e3681997-04-29 17:48:10 +000064 valid_blk.o \
Theodore Ts'o30ae14c2001-06-13 22:38:56 +000065 version.o
Theodore Ts'o50e1e101997-04-26 13:58:21 +000066
67SRCS= ext2_err.c \
68 $(srcdir)/alloc.c \
Theodore Ts'oef344e12003-11-21 09:02:21 -050069 $(srcdir)/alloc_sb.c \
Theodore Ts'o8bd0c952002-01-03 03:29:19 -050070 $(srcdir)/alloc_stats.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000071 $(srcdir)/alloc_tables.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000072 $(srcdir)/badblocks.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000073 $(srcdir)/bb_compat.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000074 $(srcdir)/bb_inode.c \
75 $(srcdir)/bitmaps.c \
76 $(srcdir)/bitops.c \
77 $(srcdir)/block.c \
Theodore Ts'o30fab291997-10-25 22:37:42 +000078 $(srcdir)/bmap.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000079 $(srcdir)/check_desc.c \
80 $(srcdir)/closefs.c \
81 $(srcdir)/cmp_bitmaps.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000082 $(srcdir)/dblist.c \
83 $(srcdir)/dblist_dir.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000084 $(srcdir)/dirblock.c \
Theodore Ts'o52783e02002-03-11 15:04:45 -050085 $(srcdir)/dirhash.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000086 $(srcdir)/dir_iterate.c \
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000087 $(srcdir)/dupfs.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000088 $(srcdir)/expanddir.c \
Theodore Ts'o342d8472001-07-02 11:54:09 -040089 $(srcdir)/ext_attr.c \
Theodore Ts'o30fab291997-10-25 22:37:42 +000090 $(srcdir)/fileio.c \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +000091 $(srcdir)/finddev.c \
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000092 $(srcdir)/flushb.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000093 $(srcdir)/freefs.c \
Theodore Ts'o30ae14c2001-06-13 22:38:56 +000094 $(srcdir)/gen_bitmap.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000095 $(srcdir)/get_pathname.c \
96 $(srcdir)/getsize.c \
Theodore Ts'o93d5c382003-05-21 17:28:29 -040097 $(srcdir)/getsectsize.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000098 $(srcdir)/icount.c \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +000099 $(srcdir)/imager.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000100 $(srcdir)/initialize.c \
101 $(srcdir)/inline.c \
102 $(srcdir)/inode.c \
Theodore Ts'of12e2852002-02-20 01:06:25 -0500103 $(srcdir)/inode_io.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000104 $(srcdir)/ismounted.c \
105 $(srcdir)/link.c \
106 $(srcdir)/llseek.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000107 $(srcdir)/lookup.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000108 $(srcdir)/mkdir.c \
Theodore Ts'od3cd93c2000-10-24 18:33:16 +0000109 $(srcdir)/mkjournal.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000110 $(srcdir)/namei.c \
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000111 $(srcdir)/native.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000112 $(srcdir)/newdir.c \
113 $(srcdir)/openfs.c \
114 $(srcdir)/read_bb.c \
115 $(srcdir)/read_bb_file.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000116 $(srcdir)/rs_bitmap.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000117 $(srcdir)/rw_bitmaps.c \
118 $(srcdir)/swapfs.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000119 $(srcdir)/test_io.c \
120 $(srcdir)/unix_io.c \
121 $(srcdir)/unlink.c \
Theodore Ts'o521e3681997-04-29 17:48:10 +0000122 $(srcdir)/valid_blk.c \
Theodore Ts'o57dca852000-07-04 19:20:25 +0000123 $(srcdir)/version.c \
Theodore Ts'oac493822001-07-04 14:04:58 -0400124 $(srcdir)/write_bb_file.c \
125 $(srcdir)/tst_badblocks.c \
126 $(srcdir)/tst_bitops.c \
127 $(srcdir)/tst_byteswap.c \
128 $(srcdir)/tst_getsize.c \
129 $(srcdir)/tst_iscan.c
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000130
Theodore Ts'o342d8472001-07-02 11:54:09 -0400131HFILES= bitops.h ext2fs.h ext2_io.h ext2_fs.h ext2_ext_attr.h
Theodore Ts'od1e66b72001-06-15 22:44:32 +0000132HFILES_IN= ext2_err.h ext2_types.h
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000133
134LIBRARY= libext2fs
135LIBDIR= ext2fs
136
137DLL_ADDRESS = 0x66900000
138DLL_JUMPSIZE = 0x1000
139DLL_GOTSIZE = 0x1000
Theodore Ts'o521e3681997-04-29 17:48:10 +0000140DLL_VERSION = 1.2
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000141DLL_IMAGE = libe2fs
142DLL_STUB = libext2fs
Theodore Ts'o349a4842001-06-11 00:49:29 +0000143DLL_LIBS = -L../.. -lcom_err
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000144DLL_MYDIR = ext2fs
Theodore Ts'o469bec81998-04-01 02:46:43 +0000145DLL_INSTALL_DIR = $(root_libdir)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000146
Theodore Ts'oe9affb71997-08-24 02:57:55 +0000147ELF_VERSION = 2.4
Theodore Ts'o297f47a1997-04-26 14:25:20 +0000148ELF_SO_VERSION = 2
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000149ELF_IMAGE = libext2fs
150ELF_MYDIR = ext2fs
Theodore Ts'o469bec81998-04-01 02:46:43 +0000151ELF_INSTALL_DIR = $(root_libdir)
Theodore Ts'o349a4842001-06-11 00:49:29 +0000152ELF_OTHER_LIBS = -L../.. -lcom_err
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000153
Theodore Ts'o521e3681997-04-29 17:48:10 +0000154BSDLIB_VERSION = 2.1
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000155BSDLIB_IMAGE = libext2fs
156BSDLIB_MYDIR = ext2fs
Theodore Ts'o469bec81998-04-01 02:46:43 +0000157BSDLIB_INSTALL_DIR = $(root_libdir)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000158
159@MAKEFILE_LIBRARY@
160@MAKEFILE_DLL@
161@MAKEFILE_ELF@
162@MAKEFILE_BSDLIB@
163@MAKEFILE_PROFILE@
164@MAKEFILE_CHECKER@
165
166.c.o:
Theodore Ts'o74becf31997-04-26 14:37:06 +0000167 $(CC) $(ALL_CFLAGS) -c $< -o $@
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000168@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
Theodore Ts'o74becf31997-04-26 14:37:06 +0000169@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
170@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000171@DLL_CMT@ -o jump/$*.o -c $<)
Theodore Ts'o74becf31997-04-26 14:37:06 +0000172@ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $<
173@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) -fpic -o pic/$*.o -c $<
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000174
Theodore Ts'o91835c12003-03-30 22:26:13 -0500175COMPILE_ET=../et/compile_et --build-tree
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000176
177DISTFILES= Makefile *.c *.h image
178
Theodore Ts'o44339bd1997-10-15 02:47:20 +0000179ext2_err.et: $(DEP_SUBSTITUTE) $(srcdir)/ext2_err.et.in
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000180 $(SUBSTITUTE) $(srcdir)/ext2_err.et.in ext2_err.et
181
Theodore Ts'o74becf31997-04-26 14:37:06 +0000182ext2_err.c ext2_err.h: ext2_err.et
183 $(COMPILE_ET) ext2_err.et
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000184
Theodore Ts'o57dca852000-07-04 19:20:25 +0000185tst_badblocks: tst_badblocks.o freefs.o \
186 read_bb_file.o write_bb_file.o badblocks.o
187 $(CC) -o tst_badblocks tst_badblocks.o freefs.o \
Theodore Ts'o7d4343d2002-02-12 02:34:44 -0500188 read_bb_file.o write_bb_file.o badblocks.o \
189 inline.o bitops.o gen_bitmap.o $(LIBCOM_ERR)
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000190
Theodore Ts'o30ae14c2001-06-13 22:38:56 +0000191tst_iscan: tst_iscan.o inode.o badblocks.o test_io.o $(STATIC_LIBEXT2FS)
192 $(CC) -o tst_iscan tst_iscan.o inode.o badblocks.o test_io.o \
193 $(STATIC_LIBEXT2FS) $(LIBCOM_ERR)
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000194
Theodore Ts'od36d8351997-11-12 03:48:07 +0000195tst_getsize: tst_getsize.o getsize.o $(STATIC_LIBEXT2FS)
196 $(CC) -o tst_getsize tst_getsize.o getsize.o $(STATIC_LIBEXT2FS) \
197 $(LIBCOM_ERR)
198
Theodore Ts'o52db0b42001-04-17 02:22:05 +0000199tst_ismounted: $(srcdir)/ismounted.c $(STATIC_LIBEXT2FS)
200 $(CC) -o tst_ismounted $(srcdir)/ismounted.c -DDEBUG $(ALL_CFLAGS) $(LIBCOM_ERR)
201
Theodore Ts'o9ec53cf2001-02-20 16:28:40 +0000202tst_byteswap: tst_byteswap.o bitops.o $(STATIC_LIBEXT2FS)
203 $(CC) -o tst_byteswap tst_byteswap.o bitops.o $(STATIC_LIBEXT2FS) \
204 $(LIBCOM_ERR)
205
Theodore Ts'oac493822001-07-04 14:04:58 -0400206tst_bitops: tst_bitops.o inline.o $(STATIC_LIBEXT2FS)
207 $(CC) -o tst_bitops tst_bitops.o inline.o \
208 $(STATIC_LIBEXT2FS) $(LIBCOM_ERR)
209
Theodore Ts'o93d5c382003-05-21 17:28:29 -0400210tst_getsectsize: tst_getsectsize.o getsectsize.o $(STATIC_LIBEXT2FS)
211 $(CC) -o tst_sectgetsize tst_getsectsize.o getsectsize.o \
212 -DDEBUG $(STATIC_LIBEXT2FS) $(LIBCOM_ERR)
213
Theodore Ts'od3cd93c2000-10-24 18:33:16 +0000214mkjournal: mkjournal.c $(STATIC_LIBEXT2FS)
215 $(CC) -o mkjournal $(srcdir)/mkjournal.c -DDEBUG $(STATIC_LIBEXT2FS) $(LIBCOM_ERR) $(ALL_CFLAGS)
216
Theodore Ts'ofeb44c62002-11-08 14:55:38 -0500217check:: tst_badblocks tst_iscan @SWAPFS_CMT@ tst_byteswap
Theodore Ts'oafb6d702003-04-21 16:12:34 -0400218 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_badblocks
219 LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_iscan
220@SWAPFS_CMT@ LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./tst_byteswap
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000221
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000222installdirs::
Theodore Ts'o469bec81998-04-01 02:46:43 +0000223 $(top_srcdir)/mkinstalldirs $(DESTDIR)$(libdir) \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000224 $(DESTDIR)$(includedir)/ext2fs
225
Theodore Ts'od1e66b72001-06-15 22:44:32 +0000226install:: all $(HFILES) $(HFILES_IN) installdirs
Theodore Ts'o469bec81998-04-01 02:46:43 +0000227 $(INSTALL_DATA) libext2fs.a $(DESTDIR)$(libdir)/libext2fs.a
228 $(CHMOD) 644 $(DESTDIR)$(libdir)/libext2fs.a
229 -$(RANLIB) $(DESTDIR)$(libdir)/libext2fs.a
230 $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/libext2fs.a
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000231 for i in $(HFILES); do \
232 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/ext2fs/$$i; \
233 done
Theodore Ts'od1e66b72001-06-15 22:44:32 +0000234 for i in $(HFILES_IN); do \
235 $(INSTALL_DATA) $$i $(DESTDIR)$(includedir)/ext2fs/$$i; \
236 done
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000237
238uninstall::
Theodore Ts'o469bec81998-04-01 02:46:43 +0000239 $(RM) -f $(DESTDIR)$(libdir)/libext2fs.a
240 $(RM) -rf $(DESTDIR)$(includedir)/ext2fs
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000241
242clean::
243 $(RM) -f \#* *.s *.o *.a *~ *.bak core profiled/* checker/* \
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +0000244 tst_badblocks tst_iscan ext2_err.et ext2_err.c ext2_err.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000245 tst_byteswap tst_ismounted mkjournal \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000246 ../libext2fs.a ../libext2fs_p.a ../libext2fs_chk.a
247
248mostlyclean:: clean
249distclean:: clean
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +0000250 $(RM) -f .depend ext2_err.c ext2_err.h Makefile \
251 $(srcdir)/TAGS $(srcdir)/Makefile.in.old
Theodore Ts'of0f4acb2000-05-25 23:22:11 +0000252#
253# Hack to parallel makes recognize dependencies correctly.
254#
255$(top_builddir)/lib/ext2fs/ext2_err.h: ext2_err.h
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000256
257# +++ Dependency line eater +++
258#
259# Makefile dependencies follow. This must be the last section in
260# the Makefile.in file
261#
262ext2_err.o: ext2_err.c
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000263alloc.o: $(srcdir)/alloc.c $(srcdir)/ext2_fs.h \
264 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000265 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
266 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'oa5f3f5c2002-02-03 01:00:22 -0500267alloc_stats.o: $(srcdir)/alloc_stats.c $(srcdir)/ext2_fs.h \
268 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
269 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
270 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000271alloc_tables.o: $(srcdir)/alloc_tables.c $(srcdir)/ext2_fs.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000272 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
273 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
274 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
275badblocks.o: $(srcdir)/badblocks.c $(srcdir)/ext2_fs.h \
276 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000277 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
278 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000279bb_compat.o: $(srcdir)/bb_compat.c $(srcdir)/ext2_fs.h \
280 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000281 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
282 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000283bb_inode.o: $(srcdir)/bb_inode.c $(srcdir)/ext2_fs.h \
284 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
285 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
286 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
287bitmaps.o: $(srcdir)/bitmaps.c $(srcdir)/ext2_fs.h \
288 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
289 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
290 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
291bitops.o: $(srcdir)/bitops.c $(srcdir)/ext2_fs.h \
292 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
293 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
294 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
295block.o: $(srcdir)/block.c $(srcdir)/ext2_fs.h \
296 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
297 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
298 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
299bmap.o: $(srcdir)/bmap.c $(srcdir)/ext2_fs.h \
300 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
301 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
302 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
303check_desc.o: $(srcdir)/check_desc.c $(srcdir)/ext2_fs.h \
304 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
305 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
306 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
307closefs.o: $(srcdir)/closefs.c $(srcdir)/ext2_fs.h \
308 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000309 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
310 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000311cmp_bitmaps.o: $(srcdir)/cmp_bitmaps.c $(srcdir)/ext2_fs.h \
312 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000313 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
314 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000315dblist.o: $(srcdir)/dblist.c $(srcdir)/ext2_fs.h \
316 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000317 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
318 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000319dblist_dir.o: $(srcdir)/dblist_dir.c $(srcdir)/ext2_fs.h \
320 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000321 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
322 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000323dirblock.o: $(srcdir)/dirblock.c $(srcdir)/ext2_fs.h \
324 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000325 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000326 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'oc6633052002-09-24 01:26:50 -0400327dirhash.o: $(srcdir)/dirhash.c $(srcdir)/ext2_fs.h \
328 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
329 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
330 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000331dir_iterate.o: $(srcdir)/dir_iterate.c $(srcdir)/ext2_fs.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000332 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000333 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
334 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000335dupfs.o: $(srcdir)/dupfs.c $(srcdir)/ext2_fs.h \
336 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
337 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
338 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
339expanddir.o: $(srcdir)/expanddir.c $(srcdir)/ext2_fs.h \
340 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000341 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
342 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'oac493822001-07-04 14:04:58 -0400343ext_attr.o: $(srcdir)/ext_attr.c $(srcdir)/ext2_fs.h \
344 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2_ext_attr.h \
345 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
346 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000347fileio.o: $(srcdir)/fileio.c $(srcdir)/ext2_fs.h \
348 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000349 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
350 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000351finddev.o: $(srcdir)/finddev.c $(srcdir)/ext2_fs.h \
352 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000353 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
354 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000355flushb.o: $(srcdir)/flushb.c $(srcdir)/ext2_fs.h \
356 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000357 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
358 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000359freefs.o: $(srcdir)/freefs.c $(srcdir)/ext2_fs.h \
360 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000361 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
362 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o30ae14c2001-06-13 22:38:56 +0000363gen_bitmap.o: $(srcdir)/gen_bitmap.c $(srcdir)/ext2_fs.h \
364 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
365 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
366 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000367get_pathname.o: $(srcdir)/get_pathname.c $(srcdir)/ext2_fs.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000368 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000369 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
370 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o5f0fabe2001-12-24 12:42:45 -0500371getsize.o: $(srcdir)/getsize.c $(srcdir)/ext2_fs.h \
372 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
373 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000374 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'oc6df04b2003-07-23 09:53:06 -0400375getsectsize.o: $(srcdir)/getsectsize.c $(srcdir)/ext2_fs.h \
376 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
377 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
378 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000379icount.o: $(srcdir)/icount.c $(srcdir)/ext2_fs.h \
380 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000381 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
382 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000383imager.o: $(srcdir)/imager.c $(srcdir)/ext2_fs.h \
384 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000385 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
386 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000387initialize.o: $(srcdir)/initialize.c $(srcdir)/ext2_fs.h \
388 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000389 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
390 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000391inline.o: $(srcdir)/inline.c $(srcdir)/ext2_fs.h \
392 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
393 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
394 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
395inode.o: $(srcdir)/inode.c $(srcdir)/ext2_fs.h \
396 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fsP.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000397 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
398 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h $(srcdir)/e2image.h
Theodore Ts'of12e2852002-02-20 01:06:25 -0500399inode_io.o: $(srcdir)/inode_io.c $(srcdir)/ext2_fs.h \
400 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
401 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
402 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o5f0fabe2001-12-24 12:42:45 -0500403ismounted.o: $(srcdir)/ismounted.c $(srcdir)/ext2_fs.h \
404 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
405 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000406 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000407link.o: $(srcdir)/link.c $(srcdir)/ext2_fs.h \
408 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000409 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
410 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000411llseek.o: $(srcdir)/llseek.c $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o6c133521999-07-03 20:37:03 +0000412 $(srcdir)/ext2_io.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000413lookup.o: $(srcdir)/lookup.c $(srcdir)/ext2_fs.h \
414 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000415 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000416 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000417mkdir.o: $(srcdir)/mkdir.c $(srcdir)/ext2_fs.h \
418 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000419 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000420 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o5f0fabe2001-12-24 12:42:45 -0500421mkjournal.o: $(srcdir)/mkjournal.c $(srcdir)/ext2_fs.h \
422 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/e2p/e2p.h \
423 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
424 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h \
425 $(srcdir)/jfs_user.h $(srcdir)/kernel-jbd.h $(srcdir)/jfs_compat.h \
426 $(srcdir)/kernel-list.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000427namei.o: $(srcdir)/namei.c $(srcdir)/ext2_fs.h \
428 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000429 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
430 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000431native.o: $(srcdir)/native.c $(srcdir)/ext2_fs.h \
432 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000433 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000434 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000435newdir.o: $(srcdir)/newdir.c $(srcdir)/ext2_fs.h \
436 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000437 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
438 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000439openfs.o: $(srcdir)/openfs.c $(srcdir)/ext2_fs.h \
440 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000441 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o2521f522001-05-11 05:04:03 +0000442 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h $(srcdir)/e2image.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000443read_bb.o: $(srcdir)/read_bb.c $(srcdir)/ext2_fs.h \
444 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000445 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
446 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
447read_bb_file.o: $(srcdir)/read_bb_file.c $(srcdir)/ext2_fs.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000448 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000449 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000450 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000451rs_bitmap.o: $(srcdir)/rs_bitmap.c $(srcdir)/ext2_fs.h \
452 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
453 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
454 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
455rw_bitmaps.o: $(srcdir)/rw_bitmaps.c $(srcdir)/ext2_fs.h \
456 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000457 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
458 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h $(srcdir)/e2image.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000459swapfs.o: $(srcdir)/swapfs.c $(srcdir)/ext2_fs.h \
460 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000461 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000462 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000463test_io.o: $(srcdir)/test_io.c $(srcdir)/ext2_fs.h \
464 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000465 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000466 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000467unix_io.o: $(srcdir)/unix_io.c $(srcdir)/ext2_fs.h \
468 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000469 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000470 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000471unlink.o: $(srcdir)/unlink.c $(srcdir)/ext2_fs.h \
472 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000473 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
474 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000475valid_blk.o: $(srcdir)/valid_blk.c $(srcdir)/ext2_fs.h \
476 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000477 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
478 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000479version.o: $(srcdir)/version.c $(srcdir)/ext2_fs.h \
480 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000481 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000482 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h \
Theodore Ts'o9f8046f2001-05-14 11:35:52 +0000483 $(top_srcdir)/version.h
484write_bb_file.o: $(srcdir)/write_bb_file.c $(srcdir)/ext2_fs.h \
Theodore Ts'o797f5ef2001-06-01 23:49:46 +0000485 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
486 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000487 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'oac493822001-07-04 14:04:58 -0400488tst_badblocks.o: $(srcdir)/tst_badblocks.c $(srcdir)/ext2_fs.h \
489 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
490 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
491 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
492tst_bitops.o: $(srcdir)/tst_bitops.c $(srcdir)/ext2_fs.h \
493 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
494 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
495 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
496tst_byteswap.o: $(srcdir)/tst_byteswap.c $(srcdir)/ext2_fs.h \
497 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
498 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
499 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
500tst_getsize.o: $(srcdir)/tst_getsize.c $(srcdir)/ext2_fs.h \
501 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
502 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
503 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
504tst_iscan.o: $(srcdir)/tst_iscan.c $(srcdir)/ext2_fs.h \
505 $(top_builddir)/lib/ext2fs/ext2_types.h $(srcdir)/ext2fs.h \
506 $(top_srcdir)/lib/et/com_err.h $(srcdir)/ext2_io.h \
507 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h