blob: 348d62211caaa3fe80e0cb816cbece97d17aac14 [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
10OBJS= ext2_err.o \
11 alloc.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000012 alloc_tables.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000013 badblocks.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000014 bb_compat.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000015 bb_inode.o \
16 bitmaps.o \
17 bitops.o \
18 block.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000019 brel_ma.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000020 check_desc.o \
21 closefs.o \
22 cmp_bitmaps.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000023 dblist.o \
24 dblist_dir.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000025 dirblock.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000026 dir_iterate.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000027 expanddir.o \
28 freefs.o \
29 get_pathname.o \
30 getsize.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000031 icount.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000032 initialize.o \
33 inline.o \
34 inode.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000035 irel_ma.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000036 ismounted.o \
37 link.o \
38 llseek.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000039 lookup.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000040 mkdir.o \
41 namei.o \
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000042 native.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000043 newdir.o \
44 openfs.o \
45 read_bb.o \
46 read_bb_file.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000047 rs_bitmap.o \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000048 rw_bitmaps.o \
49 swapfs.o \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000050 test_io.o \
51 unix_io.o \
52 unlink.o \
Theodore Ts'o521e3681997-04-29 17:48:10 +000053 valid_blk.o \
54 version.o
Theodore Ts'o50e1e101997-04-26 13:58:21 +000055
56SRCS= ext2_err.c \
57 $(srcdir)/alloc.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000058 $(srcdir)/alloc_tables.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000059 $(srcdir)/badblocks.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000060 $(srcdir)/bb_compat.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000061 $(srcdir)/bb_inode.c \
62 $(srcdir)/bitmaps.c \
63 $(srcdir)/bitops.c \
64 $(srcdir)/block.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000065 $(srcdir)/brel_ma.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000066 $(srcdir)/check_desc.c \
67 $(srcdir)/closefs.c \
68 $(srcdir)/cmp_bitmaps.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000069 $(srcdir)/dblist.c \
70 $(srcdir)/dblist_dir.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000071 $(srcdir)/dirblock.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000072 $(srcdir)/dir_iterate.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000073 $(srcdir)/expanddir.c \
74 $(srcdir)/freefs.c \
75 $(srcdir)/get_pathname.c \
76 $(srcdir)/getsize.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000077 $(srcdir)/icount.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000078 $(srcdir)/initialize.c \
79 $(srcdir)/inline.c \
80 $(srcdir)/inode.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000081 $(srcdir)/irel_ma.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000082 $(srcdir)/ismounted.c \
83 $(srcdir)/link.c \
84 $(srcdir)/llseek.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000085 $(srcdir)/lookup.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000086 $(srcdir)/mkdir.c \
87 $(srcdir)/namei.c \
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000088 $(srcdir)/native.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000089 $(srcdir)/newdir.c \
90 $(srcdir)/openfs.c \
91 $(srcdir)/read_bb.c \
92 $(srcdir)/read_bb_file.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000093 $(srcdir)/rs_bitmap.c \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000094 $(srcdir)/rw_bitmaps.c \
95 $(srcdir)/swapfs.c \
Theodore Ts'o21c84b71997-04-29 16:15:03 +000096 $(srcdir)/test_io.c \
97 $(srcdir)/unix_io.c \
98 $(srcdir)/unlink.c \
Theodore Ts'o521e3681997-04-29 17:48:10 +000099 $(srcdir)/valid_blk.c \
100 $(srcdir)/version.c
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000101
102HFILES= bitops.h ext2fs.h io.h
103
104LIBRARY= libext2fs
105LIBDIR= ext2fs
106
107DLL_ADDRESS = 0x66900000
108DLL_JUMPSIZE = 0x1000
109DLL_GOTSIZE = 0x1000
Theodore Ts'o521e3681997-04-29 17:48:10 +0000110DLL_VERSION = 1.2
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000111DLL_IMAGE = libe2fs
112DLL_STUB = libext2fs
113DLL_LIBS = -L../.. -lcom_err
114DLL_MYDIR = ext2fs
115DLL_INSTALL_DIR = $(libdir)
116
Theodore Ts'o521e3681997-04-29 17:48:10 +0000117ELF_VERSION = 2.3
Theodore Ts'o297f47a1997-04-26 14:25:20 +0000118ELF_SO_VERSION = 2
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000119ELF_IMAGE = libext2fs
120ELF_MYDIR = ext2fs
121ELF_INSTALL_DIR = $(libdir)
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000122ELF_OTHER_LIBS = -lc -L../.. -lcom_err
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000123
Theodore Ts'o521e3681997-04-29 17:48:10 +0000124BSDLIB_VERSION = 2.1
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000125BSDLIB_IMAGE = libext2fs
126BSDLIB_MYDIR = ext2fs
127BSDLIB_INSTALL_DIR = $(libdir)
128
129@MAKEFILE_LIBRARY@
130@MAKEFILE_DLL@
131@MAKEFILE_ELF@
132@MAKEFILE_BSDLIB@
133@MAKEFILE_PROFILE@
134@MAKEFILE_CHECKER@
135
136.c.o:
Theodore Ts'o74becf31997-04-26 14:37:06 +0000137 $(CC) $(ALL_CFLAGS) -c $< -o $@
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000138@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
Theodore Ts'o74becf31997-04-26 14:37:06 +0000139@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
140@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000141@DLL_CMT@ -o jump/$*.o -c $<)
Theodore Ts'o74becf31997-04-26 14:37:06 +0000142@ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $<
143@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) -fpic -o pic/$*.o -c $<
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000144
145COMPILE_ET=../et/compile_et
146
147DISTFILES= Makefile *.c *.h image
148
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000149ext2_err.et: $(SUBSTITUTE) $(srcdir)/ext2_err.et.in
150 -$(CHMOD) +x $(SUBSTITUTE)
151 $(SUBSTITUTE) $(srcdir)/ext2_err.et.in ext2_err.et
152
Theodore Ts'o74becf31997-04-26 14:37:06 +0000153ext2_err.c ext2_err.h: ext2_err.et
154 $(COMPILE_ET) ext2_err.et
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000155
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000156tst_badblocks: tst_badblocks.o badblocks.o
157 $(CC) -o tst_badblocks tst_badblocks.o badblocks.o $(LIBCOM_ERR)
158
159tst_iscan: tst_iscan.o inode.o $(STATIC_LIBEXT2FS)
160 $(CC) -o tst_iscan tst_iscan.o inode.o $(STATIC_LIBEXT2FS) \
161 $(LIBCOM_ERR)
162
163check:: tst_badblocks tst_iscan
164 ./tst_badblocks
165 ./tst_iscan
166
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000167installdirs::
168 $(top_srcdir)/mkinstalldirs $(DESTDIR)$(ulibdir) \
169 $(DESTDIR)$(includedir)/ext2fs
170
171install:: all $(HFILES) installdirs
172 $(INSTALL_DATA) libext2fs.a $(DESTDIR)$(ulibdir)/libext2fs.a
173 $(CHMOD) 644 $(DESTDIR)$(ulibdir)/libext2fs.a
174 -$(RANLIB) $(DESTDIR)$(ulibdir)/libext2fs.a
175 $(CHMOD) $(LIBMODE) $(DESTDIR)$(ulibdir)/libext2fs.a
176 for i in $(HFILES); do \
177 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/ext2fs/$$i; \
178 done
179 $(INSTALL_DATA) ext2_err.h $(DESTDIR)$(includedir)/ext2fs/ext2_err.h
180
181uninstall::
182 $(RM) -f $(ulibdir)/libext2fs.a
183 $(RM) -rf $(includedir)/ext2fs
184
185clean::
186 $(RM) -f \#* *.s *.o *.a *~ *.bak core profiled/* checker/* \
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000187 ext2_err.et ext2_err.c ext2_err.h \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000188 ../libext2fs.a ../libext2fs_p.a ../libext2fs_chk.a
189
190mostlyclean:: clean
191distclean:: clean
192 $(RM) -f .depend ext2_err.c ext2_err.h Makefile
193
194# +++ Dependency line eater +++
195#
196# Makefile dependencies follow. This must be the last section in
197# the Makefile.in file
198#
199ext2_err.o: ext2_err.c
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000200alloc.o: $(srcdir)/alloc.c \
201 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
202 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
203 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000204alloc_tables.o: $(srcdir)/alloc_tables.c $(srcdir)/ext2fs.h \
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000205 $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000206 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
207 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000208badblocks.o: $(srcdir)/badblocks.c $(srcdir)/ext2fsP.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000209 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
210 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
211 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000212bb_compat.o: $(srcdir)/bb_compat.c $(srcdir)/ext2fsP.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000213 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
214 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
215 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000216bb_inode.o: $(srcdir)/bb_inode.c $(srcdir)/ext2fs.h \
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000217 $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000218 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
219 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000220bitmaps.o: $(srcdir)/bitmaps.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000221 $(top_srcdir)/lib/et/com_err.h \
222 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
223 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000224bitops.o: $(srcdir)/bitops.c $(srcdir)/ext2fs.h \
225 $(top_srcdir)/lib/et/com_err.h $(srcdir)/io.h \
226 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
227block.o: $(srcdir)/block.c $(srcdir)/ext2fs.h \
228 $(top_srcdir)/lib/et/com_err.h \
229 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
230 $(srcdir)/bitops.h
231brel_ma.o: $(srcdir)/brel_ma.c $(srcdir)/ext2fs.h \
232 $(top_srcdir)/lib/et/com_err.h $(srcdir)/io.h \
233 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h $(srcdir)/brel.h
234check_desc.o: $(srcdir)/check_desc.c $(srcdir)/ext2fs.h \
235 $(top_srcdir)/lib/et/com_err.h \
236 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
237 $(srcdir)/bitops.h
238closefs.o: $(srcdir)/closefs.c $(srcdir)/ext2fsP.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000239 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
240 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
241 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000242cmp_bitmaps.o: $(srcdir)/cmp_bitmaps.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000243 $(top_srcdir)/lib/et/com_err.h \
244 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
245 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000246dblist.o: $(srcdir)/dblist.c $(srcdir)/ext2fsP.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000247 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
248 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
249 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000250dblist_dir.o: $(srcdir)/dblist_dir.c $(srcdir)/ext2fsP.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000251 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
252 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
253 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000254dirblock.o: $(srcdir)/dirblock.c $(srcdir)/ext2fs.h \
255 $(top_srcdir)/lib/et/com_err.h \
256 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
257 $(srcdir)/bitops.h
258dir_iterate.o: $(srcdir)/dir_iterate.c $(srcdir)/ext2fsP.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000259 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
260 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
261 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000262expanddir.o: $(srcdir)/expanddir.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000263 $(top_srcdir)/lib/et/com_err.h \
264 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
265 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000266freefs.o: $(srcdir)/freefs.c $(srcdir)/ext2fs.h \
267 $(top_srcdir)/lib/et/com_err.h $(srcdir)/io.h \
268 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
269get_pathname.o: $(srcdir)/get_pathname.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000270 $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000271 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
272getsize.o: $(srcdir)/getsize.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000273 $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000274 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000275icount.o: $(srcdir)/icount.c $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000276 $(srcdir)/ext2fs.h $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000277 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000278initialize.o: $(srcdir)/initialize.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000279 $(top_srcdir)/lib/et/com_err.h \
280 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
281 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000282inline.o: $(srcdir)/inline.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000283 $(top_srcdir)/lib/et/com_err.h \
284 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
285 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000286inode.o: $(srcdir)/inode.c $(srcdir)/ext2fsP.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000287 $(srcdir)/ext2fs.h $(top_srcdir)/lib/et/com_err.h \
288 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
289 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000290irel_ma.o: $(srcdir)/irel_ma.c $(srcdir)/ext2fs.h \
291 $(top_srcdir)/lib/et/com_err.h $(srcdir)/io.h \
292 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h $(srcdir)/irel.h
293ismounted.o: $(srcdir)/ismounted.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000294 $(top_srcdir)/lib/et/com_err.h \
295 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
296 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000297link.o: $(srcdir)/link.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000298 $(top_srcdir)/lib/et/com_err.h \
299 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
300 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000301llseek.o: $(srcdir)/llseek.c $(top_srcdir)/lib/et/com_err.h \
302 $(srcdir)/io.h
303lookup.o: $(srcdir)/lookup.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000304 $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000305 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
306mkdir.o: $(srcdir)/mkdir.c $(srcdir)/ext2fs.h \
307 $(top_srcdir)/lib/et/com_err.h \
308 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
309namei.o: $(srcdir)/namei.c $(srcdir)/ext2fs.h \
310 $(top_srcdir)/lib/et/com_err.h \
311 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
312native.o: $(srcdir)/native.c $(srcdir)/ext2fs.h \
313 $(top_srcdir)/lib/et/com_err.h \
314 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
315newdir.o: $(srcdir)/newdir.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000316 $(top_srcdir)/lib/et/com_err.h \
317 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
318 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000319openfs.o: $(srcdir)/openfs.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000320 $(top_srcdir)/lib/et/com_err.h \
321 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
322 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000323read_bb.o: $(srcdir)/read_bb.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000324 $(top_srcdir)/lib/et/com_err.h \
325 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
326 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000327read_bb_file.o: $(srcdir)/read_bb_file.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000328 $(top_srcdir)/lib/et/com_err.h \
329 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
330 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000331rs_bitmap.o: $(srcdir)/rs_bitmap.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000332 $(top_srcdir)/lib/et/com_err.h \
333 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
334 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000335rw_bitmaps.o: $(srcdir)/rw_bitmaps.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000336 $(top_srcdir)/lib/et/com_err.h \
337 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
338 $(srcdir)/bitops.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000339swapfs.o: $(srcdir)/swapfs.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000340 $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000341 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
342test_io.o: $(srcdir)/test_io.c $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000343 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/io.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000344unix_io.o: $(srcdir)/unix_io.c $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000345 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/io.h
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000346unlink.o: $(srcdir)/unlink.c $(srcdir)/ext2fs.h \
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000347 $(top_srcdir)/lib/et/com_err.h \
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000348 $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
349valid_blk.o: $(srcdir)/valid_blk.c $(srcdir)/ext2fs.h \
350 $(top_srcdir)/lib/et/com_err.h $(srcdir)/io.h \
351 $(top_builddir)/lib/ext2fs/ext2_err.h $(srcdir)/bitops.h
352version.o: $(srcdir)/version.c $(top_srcdir)/lib/et/com_err.h \
353 $(srcdir)/ext2fs.h $(srcdir)/io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
354 $(srcdir)/bitops.h $(srcdir)/../../version.h