Whamcloud - gitweb
misc: create better-packaged static analysis reports
[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         $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $<
50
51 all:: $(PROGS) $(MANPAGES)
52
53 debugfs: $(DEBUG_OBJS) $(DEPLIBS)
54         $(E) "  LD $@"
55         $(Q) $(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS)
56
57 debugfs.static: $(DEBUG_OBJS) $(STATIC_DEPLIBS)
58         $(E) "  LD $@"
59         $(Q) $(CC) $(LDFLAGS_STATIC) -o debugfs.static $(DEBUG_OBJS) \
60                 $(STATIC_LIBS) $(READLINE_LIB)
61
62 rdebugfs: $(RO_DEBUG_OBJS) $(DEPLIBS)
63         $(E) "  LD $@"
64         $(Q) $(CC) $(ALL_LDFLAGS) -o rdebugfs $(RO_DEBUG_OBJS) $(LIBS)
65
66 debug_cmds.c debug_cmds.h: debug_cmds.ct
67         $(E) "  MK_CMDS $@"
68         $(Q) $(MK_CMDS) $(srcdir)/debug_cmds.ct
69
70 extent_cmds.c extent_cmds.h: extent_cmds.ct
71         $(E) "  MK_CMDS $@"
72         $(Q) $(MK_CMDS) $(srcdir)/extent_cmds.ct
73
74 ro_debug_cmds.c ro_debug_cmds.h: ro_debug_cmds.ct
75         $(E) "  MK_CMDS $@"
76         $(Q) $(MK_CMDS) $(srcdir)/ro_debug_cmds.ct
77
78 ro_debugfs.o: debugfs.c
79         $(E) "  CC $@"
80         $(Q) $(CC) -c $(ALL_CFLAGS) $< -DREAD_ONLY -o $@
81
82 e2freefrag.o: $(srcdir)/../misc/e2freefrag.c
83         $(E) "  CC $@"
84         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) $< -DDEBUGFS -o $@
85
86 create_inode.o: $(srcdir)/../misc/create_inode.c
87         $(E) "  CC $@"
88         $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
89                  $(srcdir)/../misc/create_inode.c -DDEBUGFS -o $@
90
91 debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in
92         $(E) "  SUBST $@"
93         $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/debugfs.8.in debugfs.8
94
95 installdirs:
96         $(E) "  MKINSTALLDIRS $(root_sbindir) $(man8dir)"
97         $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
98                 $(DESTDIR)$(man8dir)
99
100 install: $(PROGS) $(MANPAGES) installdirs
101         $(Q) for i in $(PROGS); do \
102                 echo "  INSTALL $(root_sbindir)/$$i"; \
103                 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
104         done
105         $(Q) for i in $(MANPAGES); do \
106                 for j in $(COMPRESS_EXT); do \
107                         $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
108                 done; \
109                 echo "  INSTALL_DATA $(man8dir)/$$i"; \
110                 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
111         done
112
113 install-strip: install
114         $(Q) for i in $(PROGS); do \
115                 echo "  STRIP $(root_sbindir)/$$i"; \
116                 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
117         done
118
119 uninstall:
120         for i in $(PROGS); do \
121                 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
122         done
123         for i in $(MANPAGES); do \
124                 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
125         done
126
127 clean::
128         $(RM) -f $(PROGS) debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c \
129                 extent_cmds.c ro_debug_cmds.c core rdebugfs debugfs.static
130
131 mostlyclean: clean
132 distclean: clean
133         $(RM) -f debug_cmds.c .depend Makefile $(srcdir)/TAGS \
134                 $(srcdir)/Makefile.in.old
135
136 # +++ Dependency line eater +++
137
138 # Makefile dependencies follow.  This must be the last section in
139 # the Makefile.in file
140 #
141 debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \
142  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h
143 debugfs.o: $(srcdir)/debugfs.c $(top_builddir)/lib/config.h \
144  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
145  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
146  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
147  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
148  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
149  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
150  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
151  $(srcdir)/../misc/nls-enable.h $(top_srcdir)/version.h $(srcdir)/jfs_user.h \
152  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
153  $(top_srcdir)/lib/ext2fs/kernel-list.h
154 util.o: $(srcdir)/util.c $(top_builddir)/lib/config.h \
155  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ss/ss.h \
156  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
157  $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
158  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
159  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
160  $(top_builddir)/lib/ext2fs/ext2_err.h \
161  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
162  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
163  $(srcdir)/../misc/nls-enable.h
164 ls.o: $(srcdir)/ls.c $(top_builddir)/lib/config.h \
165  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
166  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
167  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
168  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
169  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
170  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
171  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
172  $(srcdir)/../misc/nls-enable.h
173 ncheck.o: $(srcdir)/ncheck.c $(top_builddir)/lib/config.h \
174  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
175  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
176  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
177  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
178  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
179  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
180  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
181  $(srcdir)/../misc/nls-enable.h
182 icheck.o: $(srcdir)/icheck.c $(top_builddir)/lib/config.h \
183  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
184  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
185  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
186  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
187  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
188  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
189  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
190  $(srcdir)/../misc/nls-enable.h
191 lsdel.o: $(srcdir)/lsdel.c $(top_builddir)/lib/config.h \
192  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
193  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
194  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
195  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
196  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
197  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
198  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
199  $(srcdir)/../misc/nls-enable.h
200 dump.o: $(srcdir)/dump.c $(top_builddir)/lib/config.h \
201  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
202  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
203  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
204  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
205  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
206  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
207  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
208  $(srcdir)/../misc/nls-enable.h
209 set_fields.o: $(srcdir)/set_fields.c $(top_builddir)/lib/config.h \
210  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
211  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
212  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
213  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
214  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
215  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
216  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
217  $(srcdir)/../misc/nls-enable.h
218 logdump.o: $(srcdir)/logdump.c $(top_builddir)/lib/config.h \
219  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
220  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
221  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
222  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
223  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
224  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
225  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
226  $(srcdir)/../misc/nls-enable.h $(srcdir)/jfs_user.h \
227  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
228  $(top_srcdir)/lib/ext2fs/kernel-list.h
229 htree.o: $(srcdir)/htree.c $(top_builddir)/lib/config.h \
230  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
231  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
232  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
233  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
234  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
235  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
236  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
237  $(srcdir)/../misc/nls-enable.h
238 unused.o: $(srcdir)/unused.c $(top_builddir)/lib/config.h \
239  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
240  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
241  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
242  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
243  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
244  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
245  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
246  $(srcdir)/../misc/nls-enable.h
247 e2freefrag.o: $(srcdir)/../misc/e2freefrag.c $(top_builddir)/lib/config.h \
248  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
249  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
250  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
251  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
252  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
253  $(srcdir)/../misc/e2freefrag.h
254 filefrag.o: $(srcdir)/filefrag.c $(top_builddir)/lib/config.h \
255  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
256  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
257  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
258  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
259  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
260  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
261  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
262  $(srcdir)/../misc/nls-enable.h
263 extent_inode.o: $(srcdir)/extent_inode.c $(top_builddir)/lib/config.h \
264  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
265  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
266  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
267  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
268  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
269  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
270  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
271  $(srcdir)/../misc/nls-enable.h
272 zap.o: $(srcdir)/zap.c $(top_builddir)/lib/config.h \
273  $(top_builddir)/lib/dirpaths.h $(srcdir)/debugfs.h $(top_srcdir)/lib/ss/ss.h \
274  $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h \
275  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
276  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
277  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
278  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
279  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
280  $(srcdir)/../misc/nls-enable.h
281 create_inode.o: $(srcdir)/../misc/create_inode.c \
282  $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/et/com_err.h \
283  $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
284  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
285  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
286  $(top_builddir)/lib/ext2fs/ext2_err.h \
287  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
288  $(srcdir)/../misc/nls-enable.h
289 xattrs.o: $(srcdir)/xattrs.c $(srcdir)/debugfs.h \
290  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
291  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
292  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
293  $(top_builddir)/lib/ext2fs/ext2_err.h \
294  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
295  $(srcdir)/jfs_user.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
296  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h