]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - debugfs/Makefile.in
Update Makefile dependencies
[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
619dd191 17MK_CMDS= _SS_DIR_OVERRIDE=../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 \
9aa3aa8d 21 filefrag.o extent_cmds.o extent_inode.o zap.o create_inode.o
50e1e10f 22
e88c5a33 23RO_DEBUG_OBJS= ro_debug_cmds.o ro_debugfs.o util.o ncheck.o icheck.o ls.o \
ba75d9e2
TT
24 lsdel.o logdump.o htree.o e2freefrag.o filefrag.o extent_cmds.o \
25 extent_inode.o
e88c5a33 26
521e3685 27SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \
50e1e10f 28 $(srcdir)/ncheck.c $(srcdir)/icheck.c $(srcdir)/lsdel.c \
7dec050a 29 $(srcdir)/dump.c $(srcdir)/set_fields.c ${srcdir}/logdump.c \
c4ab66c5 30 $(srcdir)/htree.c $(srcdir)/unused.c ${srcdir}/../misc/e2freefrag.c \
9aa3aa8d
RY
31 $(srcdir)/filefrag.c $(srcdir)/extent_inode.c $(srcdir)/zap.c \
32 $(srcdir)/../misc/create_inode.c
33
3ae497ea 34LIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \
6c59a665 35 $(LIBUUID) $(SYSLIBS)
a6a1c081
TT
36DEPLIBS= $(LIBEXT2FS) $(LIBE2P) $(DEPLIBSS) $(DEPLIBCOM_ERR) \
37 $(DEPLIBBLKID) $(DEPLIBUUID)
50e1e10f 38
2168df75 39STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBSS) $(STATIC_LIBCOM_ERR) \
6c59a665 40 $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(STATIC_LIBE2P) $(SYSLIBS)
2168df75
TT
41STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBSS) \
42 $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBUUID) \
43 $(DEPSTATIC_LIBE2P)
44
50e1e10f 45.c.o:
c13351f6
TT
46 $(E) " CC $<"
47 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
832cb612 48 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
50e1e10f 49
62c06f79 50all:: $(PROGS) $(MANPAGES)
50e1e10f
TT
51
52debugfs: $(DEBUG_OBJS) $(DEPLIBS)
c13351f6
TT
53 $(E) " LD $@"
54 $(Q) $(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS)
50e1e10f 55
2168df75
TT
56debugfs.static: $(DEBUG_OBJS) $(STATIC_DEPLIBS)
57 $(E) " LD $@"
58 $(Q) $(CC) $(LDFLAGS_STATIC) -o debugfs.static $(DEBUG_OBJS) \
59 $(STATIC_LIBS) $(READLINE_LIB)
60
e88c5a33
TT
61rdebugfs: $(RO_DEBUG_OBJS) $(DEPLIBS)
62 $(E) " LD $@"
63 $(Q) $(CC) $(ALL_LDFLAGS) -o rdebugfs $(RO_DEBUG_OBJS) $(LIBS)
64
50e1e10f 65debug_cmds.c debug_cmds.h: debug_cmds.ct
c13351f6
TT
66 $(E) " MK_CMDS $@"
67 $(Q) $(MK_CMDS) $(srcdir)/debug_cmds.ct
50e1e10f 68
bee7b67c
TT
69extent_cmds.c extent_cmds.h: extent_cmds.ct
70 $(E) " MK_CMDS $@"
71 $(Q) $(MK_CMDS) $(srcdir)/extent_cmds.ct
72
e88c5a33
TT
73ro_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
77ro_debugfs.o: debugfs.c
78 $(E) " CC $@"
79 $(Q) $(CC) -c $(ALL_CFLAGS) $< -DREAD_ONLY -o $@
80
5e96c572
TT
81e2freefrag.o: $(srcdir)/../misc/e2freefrag.c
82 $(E) " CC $@"
83 $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) $< -DDEBUGFS -o $@
84
cecc79ac 85create_inode.o: $(srcdir)/../misc/create_inode.c
9aa3aa8d
RY
86 $(E) " CC $@"
87 $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) \
88 $(srcdir)/../misc/create_inode.c -DDEBUGFS -o $@
89
44339bdf 90debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in
c13351f6
TT
91 $(E) " SUBST $@"
92 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/debugfs.8.in debugfs.8
62c06f79 93
50e1e10f 94installdirs:
c13351f6
TT
95 $(E) " MKINSTALLDIRS $(root_sbindir) $(man8dir)"
96 $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
7e44f242 97 $(DESTDIR)$(man8dir)
50e1e10f
TT
98
99install: $(PROGS) $(MANPAGES) installdirs
c13351f6 100 $(Q) for i in $(PROGS); do \
522798d3 101 echo " INSTALL $(root_sbindir)/$$i"; \
7e44f242 102 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
50e1e10f 103 done
c13351f6 104 $(Q) for i in $(MANPAGES); do \
482afc44
TT
105 for j in $(COMPRESS_EXT); do \
106 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
107 done; \
522798d3 108 echo " INSTALL_DATA $(man8dir)/$$i"; \
74becf3c 109 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
50e1e10f
TT
110 done
111
522798d3 112install-strip: install
c13351f6 113 $(Q) for i in $(PROGS); do \
522798d3
TT
114 echo " STRIP $(root_sbindir)/$$i"; \
115 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
116 done
117
50e1e10f
TT
118uninstall:
119 for i in $(PROGS); do \
7e44f242 120 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
50e1e10f
TT
121 done
122 for i in $(MANPAGES); do \
7e44f242 123 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
50e1e10f
TT
124 done
125
fedfb27f 126clean::
e88c5a33 127 $(RM) -f $(PROGS) debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c \
2168df75 128 extent_cmds.c ro_debug_cmds.c core rdebugfs debugfs.static
62c06f79 129
50e1e10f
TT
130mostlyclean: clean
131distclean: clean
5c36a2f8
TT
132 $(RM) -f debug_cmds.c .depend Makefile $(srcdir)/TAGS \
133 $(srcdir)/Makefile.in.old
50e1e10f
TT
134
135# +++ Dependency line eater +++
136#
137# Makefile dependencies follow. This must be the last section in
138# the Makefile.in file
139#
96b5cacc 140debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \
a2146af2 141 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h
cecc79ac
TT
142debugfs.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
153util.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 \
e1f08507
TT
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 \
cecc79ac
TT
161 $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
162 $(srcdir)/../misc/nls-enable.h
163ls.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 \
797f5ef1 166 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 167 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
797f5ef1 168 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
cecc79ac
TT
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
172ncheck.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 \
75e93ab0 175 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 176 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac
TT
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
181icheck.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 \
797f5ef1 184 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 185 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac
TT
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
190lsdel.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 \
797f5ef1 193 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 194 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac
TT
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
199dump.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 \
797f5ef1 202 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 203 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac
TT
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
208set_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 \
797f5ef1 211 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 212 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 213 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
e1f08507 214 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
cecc79ac
TT
215 $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
216 $(srcdir)/../misc/nls-enable.h
217logdump.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 \
96b5cacc 220 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 221 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 222 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
e1f08507 223 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
cecc79ac
TT
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
228htree.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 \
7380ac90 231 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 232 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac 233 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
e1f08507 234 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
cecc79ac
TT
235 $(srcdir)/../misc/create_inode.h $(top_srcdir)/lib/e2p/e2p.h \
236 $(srcdir)/../misc/nls-enable.h
237unused.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 \
75e93ab0 240 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
e1f08507 241 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
cecc79ac
TT
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
246e2freefrag.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
253filefrag.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
262extent_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
271zap.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
280create_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 \
e1f08507 285 $(top_builddir)/lib/ext2fs/ext2_err.h \
cecc79ac
TT
286 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \
287 $(srcdir)/../misc/nls-enable.h