]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - debugfs/Makefile.in
mke2fs: the -d option can now handle tarball input
[thirdparty/e2fsprogs.git] / debugfs / Makefile.in
CommitLineData
50e1e10f
TT
1#
2# Standard e2fsprogs prologue....
3#
4
5srcdir = @srcdir@
6top_srcdir = @top_srcdir@
7VPATH = @srcdir@
8top_builddir = ..
fc6d9d51 9my_dir = debugfs
50e1e10f 10INSTALL = @INSTALL@
3ab2fd4e 11MKDIR_P = @MKDIR_P@
50e1e10f
TT
12
13@MCONFIG@
14
f62516f3 15PROGS= debugfs
50e1e10f
TT
16MANPAGES= debugfs.8
17
a2143b51 18MK_CMDS= _SS_DIR_OVERRIDE=$(srcdir)/../lib/ss ../lib/ss/mk_cmds
50e1e10f 19
c6bd0c97 20DEBUG_OBJS= debug_cmds.o debugfs.o util.o ncheck.o icheck.o ls.o \
c4ab66c5 21 lsdel.o dump.o set_fields.o logdump.o htree.o unused.o e2freefrag.o \
ba08cb99 22 filefrag.o extent_cmds.o extent_inode.o zap.o create_inode.o \
7e3a4f0a
JSMR
23 create_inode_libarchive.o quota.o xattrs.o journal.o revoke.o \
24 recovery.o do_journal.o
50e1e10f 25
e88c5a33 26RO_DEBUG_OBJS= ro_debug_cmds.o ro_debugfs.o util.o ncheck.o icheck.o ls.o \
ba75d9e2 27 lsdel.o logdump.o htree.o e2freefrag.o filefrag.o extent_cmds.o \
99ceb8ec 28 extent_inode.o quota.o xattrs.o
e88c5a33 29
521e3685 30SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \
50e1e10f 31 $(srcdir)/ncheck.c $(srcdir)/icheck.c $(srcdir)/lsdel.c \
7dec050a 32 $(srcdir)/dump.c $(srcdir)/set_fields.c ${srcdir}/logdump.c \
c4ab66c5 33 $(srcdir)/htree.c $(srcdir)/unused.c ${srcdir}/../misc/e2freefrag.c \
9aa3aa8d 34 $(srcdir)/filefrag.c $(srcdir)/extent_inode.c $(srcdir)/zap.c \
7e3a4f0a
JSMR
35 $(srcdir)/../misc/create_inode.c \
36 $(srcdir)/../misc/create_inode_libarchive.c $(srcdir)/xattrs.c \
37 $(srcdir)/quota.c $(srcdir)/journal.c $(srcdir)/../e2fsck/revoke.c \
99ceb8ec 38 $(srcdir)/../e2fsck/recovery.c $(srcdir)/do_journal.c
9aa3aa8d 39
f34af41b 40LIBS= $(LIBSUPPORT) $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \
7e3a4f0a 41 $(LIBUUID) $(LIBMAGIC) $(SYSLIBS) $(LIBARCHIVE)
f34af41b 42DEPLIBS= $(DEPLIBSUPPORT) $(LIBEXT2FS) $(LIBE2P) $(DEPLIBSS) $(DEPLIBCOM_ERR) \
a6a1c081 43 $(DEPLIBBLKID) $(DEPLIBUUID)
50e1e10f 44
f34af41b 45STATIC_LIBS= $(STATIC_LIBSUPPORT) $(STATIC_LIBEXT2FS) $(STATIC_LIBSS) \
75fc42f1 46 $(STATIC_LIBCOM_ERR) $(STATIC_LIBBLKID) $(STATIC_LIBUUID) \
b291c11f 47 $(STATIC_LIBE2P) $(LIBMAGIC) $(SYSLIBS)
2168df75
TT
48STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBSS) \
49 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBUUID) \
50 $(DEPSTATIC_LIBE2P)
51
055866d8 52# This nastiness is needed because of jfs_user.h hackery; when we finally
759c46cf
DW
53# clean up this mess, we should be able to drop it
54LOCAL_CFLAGS = -I$(srcdir)/../e2fsck -DDEBUGFS
55DEPEND_CFLAGS = -I$(srcdir)
56
50e1e10f 57.c.o:
c13351f6
TT
58 $(E) " CC $<"
59 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
832cb612 60 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
a46300fe 61 $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $<
50e1e10f 62
62c06f79 63all:: $(PROGS) $(MANPAGES)
50e1e10f
TT
64
65debugfs: $(DEBUG_OBJS) $(DEPLIBS)
c13351f6
TT
66 $(E) " LD $@"
67 $(Q) $(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS)
50e1e10f 68
2168df75
TT
69debugfs.static: $(DEBUG_OBJS) $(STATIC_DEPLIBS)
70 $(E) " LD $@"
71 $(Q) $(CC) $(LDFLAGS_STATIC) -o debugfs.static $(DEBUG_OBJS) \
72 $(STATIC_LIBS) $(READLINE_LIB)
73
997e213b
TT
74debugfs.static-libs: $(DEBUG_OBJS) $(STATIC_DEPLIBS)
75 $(E) " LD $@"
76 $(Q) $(CC) -o debugfs.static-libs $(DEBUG_OBJS) \
77 $(STATIC_LIBS) $(READLINE_LIB)
78
e88c5a33
TT
79rdebugfs: $(RO_DEBUG_OBJS) $(DEPLIBS)
80 $(E) " LD $@"
81 $(Q) $(CC) $(ALL_LDFLAGS) -o rdebugfs $(RO_DEBUG_OBJS) $(LIBS)
82
50e1e10f 83debug_cmds.c debug_cmds.h: debug_cmds.ct
c13351f6
TT
84 $(E) " MK_CMDS $@"
85 $(Q) $(MK_CMDS) $(srcdir)/debug_cmds.ct
50e1e10f 86
bee7b67c
TT
87extent_cmds.c extent_cmds.h: extent_cmds.ct
88 $(E) " MK_CMDS $@"
89 $(Q) $(MK_CMDS) $(srcdir)/extent_cmds.ct
90
e88c5a33
TT
91ro_debug_cmds.c ro_debug_cmds.h: ro_debug_cmds.ct
92 $(E) " MK_CMDS $@"
93 $(Q) $(MK_CMDS) $(srcdir)/ro_debug_cmds.ct
94
95ro_debugfs.o: debugfs.c
96 $(E) " CC $@"
97 $(Q) $(CC) -c $(ALL_CFLAGS) $< -DREAD_ONLY -o $@
98
5e96c572
TT
99e2freefrag.o: $(srcdir)/../misc/e2freefrag.c
100 $(E) " CC $@"
759c46cf
DW
101 $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) $< -o $@
102
103recovery.o: $(srcdir)/../e2fsck/recovery.c
104 $(E) " CC $@"
105 $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
106 $(srcdir)/../e2fsck/recovery.c -o $@
107
108revoke.o: $(srcdir)/../e2fsck/revoke.c
109 $(E) " CC $@"
110 $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
111 $(srcdir)/../e2fsck/revoke.c -o $@
5e96c572 112
cecc79ac 113create_inode.o: $(srcdir)/../misc/create_inode.c
9aa3aa8d
RY
114 $(E) " CC $@"
115 $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
759c46cf 116 $(srcdir)/../misc/create_inode.c -o $@
9aa3aa8d 117
7e3a4f0a
JSMR
118create_inode_libarchive.o: $(srcdir)/../misc/create_inode_libarchive.c
119 $(E) " CC $@"
120 $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
121 $(srcdir)/../misc/create_inode_libarchive.c -o $@
122
44339bdf 123debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in
c13351f6
TT
124 $(E) " SUBST $@"
125 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/debugfs.8.in debugfs.8
62c06f79 126
50e1e10f 127installdirs:
5abc0414
RB
128 $(E) " MKDIR_P $(root_sbindir) $(man8dir)"
129 $(Q) $(MKDIR_P) $(DESTDIR)$(root_sbindir) \
7e44f242 130 $(DESTDIR)$(man8dir)
50e1e10f
TT
131
132install: $(PROGS) $(MANPAGES) installdirs
c13351f6 133 $(Q) for i in $(PROGS); do \
522798d3 134 echo " INSTALL $(root_sbindir)/$$i"; \
7e44f242 135 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
50e1e10f 136 done
c13351f6 137 $(Q) for i in $(MANPAGES); do \
482afc44
TT
138 for j in $(COMPRESS_EXT); do \
139 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
140 done; \
522798d3 141 echo " INSTALL_DATA $(man8dir)/$$i"; \
74becf3c 142 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
50e1e10f
TT
143 done
144
522798d3 145install-strip: install
c13351f6 146 $(Q) for i in $(PROGS); do \
522798d3
TT
147 echo " STRIP $(root_sbindir)/$$i"; \
148 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
149 done
150
50e1e10f
TT
151uninstall:
152 for i in $(PROGS); do \
7e44f242 153 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
50e1e10f
TT
154 done
155 for i in $(MANPAGES); do \
7e44f242 156 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
50e1e10f
TT
157 done
158
fedfb27f 159clean::
e88c5a33 160 $(RM) -f $(PROGS) debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c \
f7e37e8b 161 extent_cmds.c ro_debug_cmds.c core rdebugfs debugfs.static \
997e213b 162 debugfs.static-libs tst_set_fields
62c06f79 163
50e1e10f
TT
164mostlyclean: clean
165distclean: clean
5c36a2f8 166 $(RM) -f debug_cmds.c .depend Makefile $(srcdir)/TAGS \
759c46cf
DW
167 $(srcdir)/Makefile.in.old $(srcdir)/recovery.c \
168 $(srcdir)/revoke.c
50e1e10f 169
f7e37e8b
KK
170tst_set_fields: set_fields.c util.c
171 $(E) " LD $@"
172 $(Q) $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(SYSLIBS) -DUNITTEST \
173 -o tst_set_fields $(srcdir)/set_fields.c $(srcdir)/util.c $(LIBS)
174
11b8ef8b 175fullcheck check:: tst_set_fields
f7e37e8b
KK
176 $(TESTENV) ./tst_set_fields
177
50e1e10f
TT
178# +++ Dependency line eater +++
179#
180# Makefile dependencies follow. This must be the last section in
181# the Makefile.in file
182#
96b5cacc 183debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \
a2146af2 184 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h
cecc79ac
TT
185debugfs.o: $(srcdir)/debugfs.c $(top_builddir)/lib/config.h \
186 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
187 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
188 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
189 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
190 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
191 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
192 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
193 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
194 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb
TT
195 $(top_srcdir)/lib/support/quotaio_tree.h $(top_srcdir)/version.h \
196 $(srcdir)/../e2fsck/jfs_user.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
197 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
30d07316 198 $(top_srcdir)/lib/ext2fs/compiler.h $(top_srcdir)/lib/support/plausible.h
cecc79ac
TT
199util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
200 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ss/ss.h \
201 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
e1f08507
TT
202 $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
203 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
204 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
205 $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
206 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
207 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
208 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
209 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 210 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
211ls.o: $(srcdir)/ls.c $(top_builddir)/lib/config.h \
212 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
213 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
797f5ef1 214 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 215 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
797f5ef1 216 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
217 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
218 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
219 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
220 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 221 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
222ncheck.o: $(srcdir)/ncheck.c $(top_builddir)/lib/config.h \
223 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
224 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
75e93ab0 225 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 226 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 227 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
228 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
229 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
230 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
231 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 232 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
233icheck.o: $(srcdir)/icheck.c $(top_builddir)/lib/config.h \
234 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
235 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
797f5ef1 236 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 237 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 238 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
239 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
240 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
241 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
242 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 243 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
244lsdel.o: $(srcdir)/lsdel.c $(top_builddir)/lib/config.h \
245 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
246 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
797f5ef1 247 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 248 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 249 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
250 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
251 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
252 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
253 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 254 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
255dump.o: $(srcdir)/dump.c $(top_builddir)/lib/config.h \
256 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
257 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
797f5ef1 258 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 259 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 260 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
261 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
262 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
263 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
264 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 265 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
266set_fields.o: $(srcdir)/set_fields.c $(top_builddir)/lib/config.h \
267 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
268 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
797f5ef1 269 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 270 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 271 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
272 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
273 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
274 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
275 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 276 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
277logdump.o: $(srcdir)/logdump.c $(top_builddir)/lib/config.h \
278 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
279 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
96b5cacc 280 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 281 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 282 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
283 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
284 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
285 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
286 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb
TT
287 $(top_srcdir)/lib/support/quotaio_tree.h $(srcdir)/../e2fsck/jfs_user.h \
288 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
30d07316
TT
289 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
290 $(top_srcdir)/lib/ext2fs/fast_commit.h
cecc79ac
TT
291htree.o: $(srcdir)/htree.c $(top_builddir)/lib/config.h \
292 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
293 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
7380ac90 294 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 295 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 296 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
297 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
298 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
299 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
300 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 301 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
302unused.o: $(srcdir)/unused.c $(top_builddir)/lib/config.h \
303 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
304 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
75e93ab0 305 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 306 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 307 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
308 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
309 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
310 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
311 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 312 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
313e2freefrag.o: $(srcdir)/../misc/e2freefrag.c $(top_builddir)/lib/config.h \
314 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
315 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
316 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
317 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
318 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
319 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/e2freefrag.h \
320 $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
759c46cf 321 $(top_builddir)/lib/ss/ss_err.h $(srcdir)/../misc/create_inode.h \
f34af41b
TT
322 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
323 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 324 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
325filefrag.o: $(srcdir)/filefrag.c $(top_builddir)/lib/config.h \
326 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
327 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
328 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
329 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
330 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
331 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
332 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
333 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
334 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 335 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
336extent_inode.o: $(srcdir)/extent_inode.c $(top_builddir)/lib/config.h \
337 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
338 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
339 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
340 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
341 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
342 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
343 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
344 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
345 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 346 $(top_srcdir)/lib/support/quotaio_tree.h
cecc79ac
TT
347zap.o: $(srcdir)/zap.c $(top_builddir)/lib/config.h \
348 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
349 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
350 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
351 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
352 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
353 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
354 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
355 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
356 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 357 $(top_srcdir)/lib/support/quotaio_tree.h
f34af41b
TT
358create_inode.o: $(srcdir)/../misc/create_inode.c $(top_builddir)/lib/config.h \
359 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
360 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
361 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
362 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
363 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
364 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/fiemap.h \
365 $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
366 $(top_srcdir)/lib/support/nls-enable.h
7e3a4f0a
JSMR
367create_inode_libarchive.o: $(srcdir)/../misc/create_inode_libarchive.c \
368 $(top_builddir)/lib/config.h $(srcdir)/../misc/create_inode_libarchive.h \
369 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
370 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
371 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
372 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
373 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
374 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/fiemap.h \
375 $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
376 $(top_srcdir)/lib/support/nls-enable.h
759c46cf 377xattrs.o: $(srcdir)/xattrs.c $(top_builddir)/lib/config.h \
997e213b
TT
378 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/support/cstring.h \
379 $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
75fc42f1 380 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
75e93ab0 381 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 382 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
75fc42f1 383 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
384 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
385 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
386 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
387 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 388 $(top_srcdir)/lib/support/quotaio_tree.h
759c46cf 389quota.o: $(srcdir)/quota.c $(top_builddir)/lib/config.h \
75fc42f1
TT
390 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
391 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
392 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
393 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
394 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
395 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
396 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
397 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
398 $(top_srcdir)/lib/support/dqblk_v2.h \
3dca12fb 399 $(top_srcdir)/lib/support/quotaio_tree.h
759c46cf 400journal.o: $(srcdir)/journal.c $(top_builddir)/lib/config.h \
997e213b
TT
401 $(top_builddir)/lib/dirpaths.h $(srcdir)/journal.h \
402 $(srcdir)/../e2fsck/jfs_user.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
403 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
404 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
405 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
406 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
407 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
30d07316
TT
408 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
409 $(top_srcdir)/lib/ext2fs/compiler.h
759c46cf 410revoke.o: $(srcdir)/../e2fsck/revoke.c $(srcdir)/../e2fsck/jfs_user.h \
0bc1e30f 411 $(top_builddir)/lib/config.h $(top_builddir)/lib/dirpaths.h \
75fc42f1
TT
412 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
413 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
759c46cf
DW
414 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
415 $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
416 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
417 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
30d07316
TT
418 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
419 $(top_srcdir)/lib/ext2fs/compiler.h
759c46cf 420recovery.o: $(srcdir)/../e2fsck/recovery.c $(srcdir)/../e2fsck/jfs_user.h \
0bc1e30f 421 $(top_builddir)/lib/config.h $(top_builddir)/lib/dirpaths.h \
75fc42f1
TT
422 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
423 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
759c46cf
DW
424 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
425 $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
426 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
427 $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
30d07316
TT
428 $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
429 $(top_srcdir)/lib/ext2fs/compiler.h
463eb921
DW
430do_journal.o: $(srcdir)/do_journal.c $(top_builddir)/lib/config.h \
431 $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
432 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.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/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
574b714d
TT
436 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
437 $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/../misc/create_inode.h \
438 $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/support/quotaio.h \
439 $(top_srcdir)/lib/support/dqblk_v2.h \
997e213b 440 $(top_srcdir)/lib/support/quotaio_tree.h \
3dca12fb 441 $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
30d07316
TT
442 $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h \
443 $(srcdir)/journal.h $(srcdir)/../e2fsck/jfs_user.h