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