Whamcloud - gitweb
debugfs: create commands to edit extended attributes
[tools/e2fsprogs.git] / debugfs / Makefile.in
1 #
2 # Standard e2fsprogs prologue....
3 #
4
5 srcdir = @srcdir@
6 top_srcdir = @top_srcdir@
7 VPATH = @srcdir@
8 top_builddir = ..
9 my_dir = debugfs
10 INSTALL = @INSTALL@
11
12 @MCONFIG@
13
14 PROGS=          debugfs
15 MANPAGES=       debugfs.8
16
17 MK_CMDS=        _SS_DIR_OVERRIDE=../lib/ss ../lib/ss/mk_cmds
18
19 DEBUG_OBJS= debug_cmds.o debugfs.o util.o ncheck.o icheck.o ls.o \
20         lsdel.o dump.o set_fields.o logdump.o htree.o unused.o e2freefrag.o \
21         filefrag.o extent_cmds.o extent_inode.o zap.o create_inode.o xattrs.o
22
23 RO_DEBUG_OBJS= ro_debug_cmds.o ro_debugfs.o util.o ncheck.o icheck.o ls.o \
24         lsdel.o logdump.o htree.o e2freefrag.o filefrag.o extent_cmds.o \
25         extent_inode.o xattrs.o
26
27 SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \
28         $(srcdir)/ncheck.c $(srcdir)/icheck.c $(srcdir)/lsdel.c \
29         $(srcdir)/dump.c $(srcdir)/set_fields.c ${srcdir}/logdump.c \
30         $(srcdir)/htree.c $(srcdir)/unused.c ${srcdir}/../misc/e2freefrag.c \
31         $(srcdir)/filefrag.c $(srcdir)/extent_inode.c $(srcdir)/zap.c \
32         $(srcdir)/../misc/create_inode.c $(srcdir)/xattrs.c
33
34 LIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \
35         $(LIBUUID) $(SYSLIBS)
36 DEPLIBS= $(LIBEXT2FS) $(LIBE2P) $(DEPLIBSS) $(DEPLIBCOM_ERR) \
37         $(DEPLIBBLKID) $(DEPLIBUUID)
38
39 STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBSS) $(STATIC_LIBCOM_ERR) \
40         $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(STATIC_LIBE2P) $(SYSLIBS)
41 STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBSS) \
42                 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBUUID) \
43                 $(DEPSTATIC_LIBE2P)
44
45 .c.o:
46         $(E) "  CC $<"
47         $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
48         $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
49
50 all:: $(PROGS) $(MANPAGES)
51
52 debugfs: $(DEBUG_OBJS) $(DEPLIBS)
53         $(E) "  LD $@"
54         $(Q) $(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS)
55
56 debugfs.static: $(DEBUG_OBJS) $(STATIC_DEPLIBS)
57         $(E) "  LD $@"
58         $(Q) $(CC) $(LDFLAGS_STATIC) -o debugfs.static $(DEBUG_OBJS) \
59                 $(STATIC_LIBS) $(READLINE_LIB)
60
61 rdebugfs: $(RO_DEBUG_OBJS) $(DEPLIBS)
62         $(E) "  LD $@"
63         $(Q) $(CC) $(ALL_LDFLAGS) -o rdebugfs $(RO_DEBUG_OBJS) $(LIBS)
64
65 debug_cmds.c debug_cmds.h: debug_cmds.ct
66         $(E) "  MK_CMDS $@"
67         $(Q) $(MK_CMDS) $(srcdir)/debug_cmds.ct
68
69 extent_cmds.c extent_cmds.h: extent_cmds.ct
70         $(E) "  MK_CMDS $@"
71         $(Q) $(MK_CMDS) $(srcdir)/extent_cmds.ct
72
73 ro_debug_cmds.c ro_debug_cmds.h: ro_debug_cmds.ct
74         $(E) "  MK_CMDS $@"
75         $(Q) $(MK_CMDS) $(srcdir)/ro_debug_cmds.ct
76
77 ro_debugfs.o: debugfs.c
78         $(E) "  CC $@"
79         $(Q) $(CC) -c $(ALL_CFLAGS) $< -DREAD_ONLY -o $@
80
81 e2freefrag.o: $(srcdir)/../misc/e2freefrag.c
82         $(E) "  CC $@"
83         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) $< -DDEBUGFS -o $@
84
85 create_inode.o: $(srcdir)/../misc/create_inode.c
86         $(E) "  CC $@"
87         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
88                  $(srcdir)/../misc/create_inode.c -DDEBUGFS -o $@
89
90 debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in
91         $(E) "  SUBST $@"
92         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/debugfs.8.in debugfs.8
93
94 installdirs:
95         $(E) "  MKINSTALLDIRS $(root_sbindir) $(man8dir)"
96         $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
97                 $(DESTDIR)$(man8dir)
98
99 install: $(PROGS) $(MANPAGES) installdirs
100         $(Q) for i in $(PROGS); do \
101                 echo "  INSTALL $(root_sbindir)/$$i"; \
102                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
103         done
104         $(Q) for i in $(MANPAGES); do \
105                 for j in $(COMPRESS_EXT); do \
106                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
107                 done; \
108                 echo "  INSTALL_DATA $(man8dir)/$$i"; \
109                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
110         done
111
112 install-strip: install
113         $(Q) for i in $(PROGS); do \
114                 echo "  STRIP $(root_sbindir)/$$i"; \
115                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
116         done
117
118 uninstall:
119         for i in $(PROGS); do \
120                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
121         done
122         for i in $(MANPAGES); do \
123                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
124         done
125
126 clean::
127         $(RM) -f $(PROGS) debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c \
128                 extent_cmds.c ro_debug_cmds.c core rdebugfs debugfs.static
129
130 mostlyclean: clean
131 distclean: clean
132         $(RM) -f debug_cmds.c .depend Makefile $(srcdir)/TAGS \
133                 $(srcdir)/Makefile.in.old
134
135 # +++ Dependency line eater +++
136
137 # Makefile dependencies follow.  This must be the last section in
138 # the Makefile.in file
139 #
140 debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \
141  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h
142 debugfs.o: $(srcdir)/debugfs.c $(top_builddir)/lib/config.h \
143  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
144  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
145  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
146  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
147  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
148  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
149  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
150  $(srcdir)/../misc/nls-enable.h $(top_srcdir)/version.h $(srcdir)/jfs_user.h \
151  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
152  $(top_srcdir)/lib/ext2fs/kernel-list.h
153 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
154  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ss/ss.h \
155  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
156  $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
157  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
158  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
159  $(top_builddir)/lib/ext2fs/ext2_err.h \
160  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
161  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
162  $(srcdir)/../misc/nls-enable.h
163 ls.o: $(srcdir)/ls.c $(top_builddir)/lib/config.h \
164  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
165  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
166  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
167  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
168  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
169  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
170  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
171  $(srcdir)/../misc/nls-enable.h
172 ncheck.o: $(srcdir)/ncheck.c $(top_builddir)/lib/config.h \
173  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
174  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
175  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
176  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
177  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
178  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
179  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
180  $(srcdir)/../misc/nls-enable.h
181 icheck.o: $(srcdir)/icheck.c $(top_builddir)/lib/config.h \
182  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
183  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
184  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
185  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
186  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
187  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
188  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
189  $(srcdir)/../misc/nls-enable.h
190 lsdel.o: $(srcdir)/lsdel.c $(top_builddir)/lib/config.h \
191  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
192  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
193  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
194  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
195  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
196  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
197  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
198  $(srcdir)/../misc/nls-enable.h
199 dump.o: $(srcdir)/dump.c $(top_builddir)/lib/config.h \
200  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
201  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
202  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
203  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
204  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
205  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
206  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
207  $(srcdir)/../misc/nls-enable.h
208 set_fields.o: $(srcdir)/set_fields.c $(top_builddir)/lib/config.h \
209  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
210  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
211  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
212  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
213  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
214  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
215  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
216  $(srcdir)/../misc/nls-enable.h
217 logdump.o: $(srcdir)/logdump.c $(top_builddir)/lib/config.h \
218  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
219  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
220  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
221  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
222  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
223  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
224  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
225  $(srcdir)/../misc/nls-enable.h $(srcdir)/jfs_user.h \
226  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
227  $(top_srcdir)/lib/ext2fs/kernel-list.h
228 htree.o: $(srcdir)/htree.c $(top_builddir)/lib/config.h \
229  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
230  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
231  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
232  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
233  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
234  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
235  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
236  $(srcdir)/../misc/nls-enable.h
237 unused.o: $(srcdir)/unused.c $(top_builddir)/lib/config.h \
238  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
239  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
240  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
241  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
242  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
243  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
244  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
245  $(srcdir)/../misc/nls-enable.h
246 e2freefrag.o: $(srcdir)/../misc/e2freefrag.c $(top_builddir)/lib/config.h \
247  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
248  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
249  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
250  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
251  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
252  $(srcdir)/../misc/e2freefrag.h
253 filefrag.o: $(srcdir)/filefrag.c $(top_builddir)/lib/config.h \
254  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
255  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
256  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
257  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
258  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
259  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
260  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
261  $(srcdir)/../misc/nls-enable.h
262 extent_inode.o: $(srcdir)/extent_inode.c $(top_builddir)/lib/config.h \
263  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
264  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
265  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
266  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
267  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
268  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
269  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
270  $(srcdir)/../misc/nls-enable.h
271 zap.o: $(srcdir)/zap.c $(top_builddir)/lib/config.h \
272  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
273  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
274  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
275  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
276  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
277  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
278  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
279  $(srcdir)/../misc/nls-enable.h
280 create_inode.o: $(srcdir)/../misc/create_inode.c \
281  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/et/com_err.h \
282  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
283  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
284  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
285  $(top_builddir)/lib/ext2fs/ext2_err.h \
286  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
287  $(srcdir)/../misc/nls-enable.h
288 xattrs.o: $(srcdir)/xattrs.c $(srcdir)/debugfs.h \
289  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
290  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
291  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
292  $(top_builddir)/lib/ext2fs/ext2_err.h \
293  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
294  $(srcdir)/jfs_user.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
295  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h