Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 1 | # |
| 2 | # Standard e2fsprogs prologue.... |
| 3 | # |
| 4 | |
| 5 | srcdir = @srcdir@ |
| 6 | top_srcdir = @top_srcdir@ |
| 7 | VPATH = @srcdir@ |
| 8 | top_builddir = .. |
Theodore Ts'o | fc6d9d5 | 1997-04-29 14:51:31 +0000 | [diff] [blame] | 9 | my_dir = debugfs |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 10 | INSTALL = @INSTALL@ |
| 11 | |
| 12 | @MCONFIG@ |
| 13 | |
Theodore Ts'o | f62516f | 2011-11-21 08:23:25 -0500 | [diff] [blame] | 14 | PROGS= debugfs |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 15 | MANPAGES= debugfs.8 |
| 16 | |
Theodore Ts'o | 619dd19 | 2000-07-04 12:37:55 +0000 | [diff] [blame] | 17 | MK_CMDS= _SS_DIR_OVERRIDE=../lib/ss ../lib/ss/mk_cmds |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 18 | |
Theodore Ts'o | c6bd0c9 | 2000-08-14 20:37:09 +0000 | [diff] [blame] | 19 | DEBUG_OBJS= debug_cmds.o debugfs.o util.o ncheck.o icheck.o ls.o \ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 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 |
| 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 |
Theodore Ts'o | e88c5a3 | 2011-11-14 22:01:52 -0500 | [diff] [blame] | 26 | |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 27 | SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \ |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 28 | $(srcdir)/ncheck.c $(srcdir)/icheck.c $(srcdir)/lsdel.c \ |
Theodore Ts'o | 7dec050 | 2004-12-21 20:37:36 -0500 | [diff] [blame] | 29 | $(srcdir)/dump.c $(srcdir)/set_fields.c ${srcdir}/logdump.c \ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 30 | $(srcdir)/htree.c $(srcdir)/unused.c ${srcdir}/../misc/e2freefrag.c \ |
| 31 | $(srcdir)/filefrag.c $(srcdir)/extent_inode.c $(srcdir)/zap.c |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 32 | |
Theodore Ts'o | 3ae497e | 2003-03-16 06:26:25 -0500 | [diff] [blame] | 33 | LIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \ |
Theodore Ts'o | daf7a6e | 2008-04-17 16:54:24 -0400 | [diff] [blame] | 34 | $(LIBUUID) |
Theodore Ts'o | a6a1c08 | 2009-07-01 22:06:51 -0400 | [diff] [blame] | 35 | DEPLIBS= $(LIBEXT2FS) $(LIBE2P) $(DEPLIBSS) $(DEPLIBCOM_ERR) \ |
| 36 | $(DEPLIBBLKID) $(DEPLIBUUID) |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 37 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 38 | STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBSS) $(STATIC_LIBCOM_ERR) \ |
| 39 | $(STATIC_LIBBLKID) $(STATIC_LIBUUID) $(STATIC_LIBE2P) |
| 40 | STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBSS) \ |
| 41 | $(DEPSTATIC_LIBCOM_ERR) $(DEPSTATIC_LIBUUID) \ |
| 42 | $(DEPSTATIC_LIBE2P) |
| 43 | |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 44 | .c.o: |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 45 | $(E) " CC $<" |
| 46 | $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 47 | $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $< |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 48 | |
Theodore Ts'o | 62c06f7 | 1997-04-29 14:34:47 +0000 | [diff] [blame] | 49 | all:: $(PROGS) $(MANPAGES) |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 50 | |
| 51 | debugfs: $(DEBUG_OBJS) $(DEPLIBS) |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 52 | $(E) " LD $@" |
| 53 | $(Q) $(CC) $(ALL_LDFLAGS) -o debugfs $(DEBUG_OBJS) $(LIBS) |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 54 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 55 | debugfs.static: $(DEBUG_OBJS) $(STATIC_DEPLIBS) |
| 56 | $(E) " LD $@" |
| 57 | $(Q) $(CC) $(LDFLAGS_STATIC) -o debugfs.static $(DEBUG_OBJS) \ |
| 58 | $(STATIC_LIBS) $(READLINE_LIB) |
| 59 | |
| 60 | rdebugfs: $(RO_DEBUG_OBJS) $(DEPLIBS) |
| 61 | $(E) " LD $@" |
| 62 | $(Q) $(CC) $(ALL_LDFLAGS) -o rdebugfs $(RO_DEBUG_OBJS) $(LIBS) |
| 63 | |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 64 | debug_cmds.c debug_cmds.h: debug_cmds.ct |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 65 | $(E) " MK_CMDS $@" |
| 66 | $(Q) $(MK_CMDS) $(srcdir)/debug_cmds.ct |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 67 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 68 | extent_cmds.c extent_cmds.h: extent_cmds.ct |
| 69 | $(E) " MK_CMDS $@" |
| 70 | $(Q) $(MK_CMDS) $(srcdir)/extent_cmds.ct |
| 71 | |
| 72 | ro_debug_cmds.c ro_debug_cmds.h: ro_debug_cmds.ct |
| 73 | $(E) " MK_CMDS $@" |
| 74 | $(Q) $(MK_CMDS) $(srcdir)/ro_debug_cmds.ct |
| 75 | |
| 76 | ro_debugfs.o: debugfs.c |
| 77 | $(E) " CC $@" |
| 78 | $(Q) $(CC) -c $(ALL_CFLAGS) $< -DREAD_ONLY -o $@ |
| 79 | |
| 80 | e2freefrag.o: $(srcdir)/../misc/e2freefrag.c |
| 81 | $(E) " CC $@" |
| 82 | $(Q) $(CC) -c $(ALL_CFLAGS) -I$(srcdir) $< -DDEBUGFS -o $@ |
| 83 | |
Theodore Ts'o | 44339bd | 1997-10-15 02:47:20 +0000 | [diff] [blame] | 84 | debugfs.8: $(DEP_SUBSTITUTE) $(srcdir)/debugfs.8.in |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 85 | $(E) " SUBST $@" |
| 86 | $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/debugfs.8.in debugfs.8 |
Theodore Ts'o | 62c06f7 | 1997-04-29 14:34:47 +0000 | [diff] [blame] | 87 | |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 88 | installdirs: |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 89 | $(E) " MKINSTALLDIRS $(root_sbindir) $(man8dir)" |
| 90 | $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \ |
Theodore Ts'o | 7e44f24 | 1998-04-01 03:16:29 +0000 | [diff] [blame] | 91 | $(DESTDIR)$(man8dir) |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 92 | |
| 93 | install: $(PROGS) $(MANPAGES) installdirs |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 94 | $(Q) for i in $(PROGS); do \ |
Theodore Ts'o | 522798d | 2004-12-15 11:28:55 -0500 | [diff] [blame] | 95 | echo " INSTALL $(root_sbindir)/$$i"; \ |
Theodore Ts'o | 7e44f24 | 1998-04-01 03:16:29 +0000 | [diff] [blame] | 96 | $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \ |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 97 | done |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 98 | $(Q) for i in $(MANPAGES); do \ |
Theodore Ts'o | 482afc4 | 2002-10-31 03:32:34 -0500 | [diff] [blame] | 99 | for j in $(COMPRESS_EXT); do \ |
| 100 | $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \ |
| 101 | done; \ |
Theodore Ts'o | 522798d | 2004-12-15 11:28:55 -0500 | [diff] [blame] | 102 | echo " INSTALL_DATA $(man8dir)/$$i"; \ |
Theodore Ts'o | 74becf3 | 1997-04-26 14:37:06 +0000 | [diff] [blame] | 103 | $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \ |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 104 | done |
| 105 | |
Theodore Ts'o | 522798d | 2004-12-15 11:28:55 -0500 | [diff] [blame] | 106 | install-strip: install |
Theodore Ts'o | c13351f | 2009-07-02 00:11:17 -0400 | [diff] [blame] | 107 | $(Q) for i in $(PROGS); do \ |
Theodore Ts'o | 522798d | 2004-12-15 11:28:55 -0500 | [diff] [blame] | 108 | echo " STRIP $(root_sbindir)/$$i"; \ |
| 109 | $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \ |
| 110 | done |
| 111 | |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 112 | uninstall: |
| 113 | for i in $(PROGS); do \ |
Theodore Ts'o | 7e44f24 | 1998-04-01 03:16:29 +0000 | [diff] [blame] | 114 | $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \ |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 115 | done |
| 116 | for i in $(MANPAGES); do \ |
Theodore Ts'o | 7e44f24 | 1998-04-01 03:16:29 +0000 | [diff] [blame] | 117 | $(RM) -f $(DESTDIR)$(man8dir)/$$i; \ |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 118 | done |
| 119 | |
| 120 | clean: |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 121 | $(RM) -f $(PROGS) debugfs.8 \#* *.s *.o *.a *~ debug_cmds.c \ |
| 122 | extent_cmds.c ro_debug_cmds.c core rdebugfs debugfs.static |
Theodore Ts'o | 62c06f7 | 1997-04-29 14:34:47 +0000 | [diff] [blame] | 123 | |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 124 | mostlyclean: clean |
| 125 | distclean: clean |
Theodore Ts'o | 5c36a2f | 1999-11-19 18:42:30 +0000 | [diff] [blame] | 126 | $(RM) -f debug_cmds.c .depend Makefile $(srcdir)/TAGS \ |
| 127 | $(srcdir)/Makefile.in.old |
Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 128 | |
| 129 | # +++ Dependency line eater +++ |
| 130 | # |
| 131 | # Makefile dependencies follow. This must be the last section in |
| 132 | # the Makefile.in file |
| 133 | # |
Theodore Ts'o | 96b5cac | 2001-12-24 15:33:49 -0500 | [diff] [blame] | 134 | debug_cmds.o: debug_cmds.c $(top_srcdir)/lib/ss/ss.h \ |
Theodore Ts'o | a2146af | 2003-04-17 23:37:28 -0400 | [diff] [blame] | 135 | $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h |
Theodore Ts'o | 62c06f7 | 1997-04-29 14:34:47 +0000 | [diff] [blame] | 136 | debugfs.o: $(srcdir)/debugfs.c $(top_srcdir)/lib/et/com_err.h \ |
Theodore Ts'o | d3aea7d | 1999-09-14 20:55:37 +0000 | [diff] [blame] | 137 | $(top_srcdir)/lib/ss/ss.h $(top_builddir)/lib/ss/ss_err.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 138 | $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \ |
| 139 | $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ |
| 140 | $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
| 141 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 142 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ |
| 143 | $(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/version.h $(srcdir)/jfs_user.h \ |
| 144 | $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \ |
| 145 | $(top_srcdir)/lib/ext2fs/kernel-list.h |
Theodore Ts'o | dba838b | 1998-12-04 06:15:12 +0000 | [diff] [blame] | 146 | util.o: $(srcdir)/util.c $(srcdir)/debugfs.h \ |
Theodore Ts'o | 797f5ef | 2001-06-01 23:49:46 +0000 | [diff] [blame] | 147 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 148 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 797f5ef | 2001-06-01 23:49:46 +0000 | [diff] [blame] | 149 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 150 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 151 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 152 | ls.o: $(srcdir)/ls.c $(srcdir)/debugfs.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \ |
| 153 | $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 154 | $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 155 | $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 156 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h |
Theodore Ts'o | dba838b | 1998-12-04 06:15:12 +0000 | [diff] [blame] | 157 | ncheck.o: $(srcdir)/ncheck.c $(srcdir)/debugfs.h \ |
Theodore Ts'o | 797f5ef | 2001-06-01 23:49:46 +0000 | [diff] [blame] | 158 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 159 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 160 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 161 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 162 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h |
Theodore Ts'o | 62c06f7 | 1997-04-29 14:34:47 +0000 | [diff] [blame] | 163 | icheck.o: $(srcdir)/icheck.c $(srcdir)/debugfs.h \ |
Theodore Ts'o | 797f5ef | 2001-06-01 23:49:46 +0000 | [diff] [blame] | 164 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 165 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 166 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 167 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 168 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h |
Theodore Ts'o | 62c06f7 | 1997-04-29 14:34:47 +0000 | [diff] [blame] | 169 | lsdel.o: $(srcdir)/lsdel.c $(srcdir)/debugfs.h \ |
Theodore Ts'o | 797f5ef | 2001-06-01 23:49:46 +0000 | [diff] [blame] | 170 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 171 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 172 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 173 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 174 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h |
Theodore Ts'o | 62c06f7 | 1997-04-29 14:34:47 +0000 | [diff] [blame] | 175 | dump.o: $(srcdir)/dump.c $(srcdir)/debugfs.h \ |
Theodore Ts'o | 797f5ef | 2001-06-01 23:49:46 +0000 | [diff] [blame] | 176 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 177 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 178 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 179 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 180 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h |
Theodore Ts'o | 7dec050 | 2004-12-21 20:37:36 -0500 | [diff] [blame] | 181 | set_fields.o: $(srcdir)/set_fields.c $(srcdir)/debugfs.h \ |
Theodore Ts'o | 797f5ef | 2001-06-01 23:49:46 +0000 | [diff] [blame] | 182 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 183 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 184 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 185 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 186 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ |
| 187 | $(top_srcdir)/lib/e2p/e2p.h |
Theodore Ts'o | 96b5cac | 2001-12-24 15:33:49 -0500 | [diff] [blame] | 188 | logdump.o: $(srcdir)/logdump.c $(srcdir)/debugfs.h \ |
| 189 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 190 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 191 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 192 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 193 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 194 | $(srcdir)/jfs_user.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 195 | $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h |
Theodore Ts'o | 7380ac9 | 2002-03-05 01:57:53 -0500 | [diff] [blame] | 196 | htree.o: $(srcdir)/htree.c $(srcdir)/debugfs.h \ |
| 197 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 198 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 199 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 200 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 201 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ |
| 202 | $(top_srcdir)/lib/e2p/e2p.h |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 203 | unused.o: $(srcdir)/unused.c $(srcdir)/debugfs.h \ |
| 204 | $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 205 | $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ |
Theodore Ts'o | 75e93ab | 2005-05-06 09:37:58 -0400 | [diff] [blame] | 206 | $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ |
Theodore Ts'o | e1f0850 | 2009-10-04 14:45:08 -0400 | [diff] [blame] | 207 | $(top_builddir)/lib/ext2fs/ext2_err.h \ |
| 208 | $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h |