1# 2# Standard e2fsprogs prologue.... 3# 4 5srcdir = @srcdir@ 6top_srcdir = @top_srcdir@ 7VPATH = @srcdir@ 8top_builddir = .. 9my_dir = resize 10INSTALL = @INSTALL@ 11 12@MCONFIG@ 13 14PROGS= resize2fs 15TEST_PROGS= test_extent 16MANPAGES= resize2fs.8 17 18RESIZE_OBJS= extent.o resize2fs.o main.o online.o resource_track.o \ 19 sim_progress.o 20 21TEST_EXTENT_OBJS= extent.o test_extent.o 22 23SRCS= $(srcdir)/extent.c \ 24 $(srcdir)/resize2fs.c \ 25 $(srcdir)/main.c \ 26 $(srcdir)/online.c \ 27 $(srcdir)/resource_track.c \ 28 $(srcdir)/sim_progress.c 29 30LIBS= $(LIBE2P) $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBINTL) $(SYSLIBS) 31DEPLIBS= $(LIBE2P) $(LIBEXT2FS) $(DEPLIBCOM_ERR) 32 33STATIC_LIBS= $(STATIC_LIBE2P) $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) \ 34 $(LIBINTL) $(SYSLIBS) 35DEPSTATIC_LIBS= $(STATIC_LIBE2P) $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBCOM_ERR) 36 37.c.o: 38 $(E) " CC $<" 39 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@ 40 $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $< 41 $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $< 42 43all:: $(PROGS) $(TEST_PROGS) $(MANPAGES) 44 45resize2fs: $(RESIZE_OBJS) $(DEPLIBS) 46 $(E) " LD $@" 47 $(Q) $(CC) $(ALL_LDFLAGS) -o resize2fs $(RESIZE_OBJS) $(LIBS) 48 49resize2fs.static: $(RESIZE_OBJS) $(DEPSTATIC_LIBS) 50 $(E) " LD $@" 51 $(Q) $(LD) $(LDFLAGS_STATIC) -o resize2fs.static \ 52 $(RESIZE_OBJS) $(STATIC_LIBS) 53 54resize2fs.8: $(DEP_SUBSTITUTE) $(srcdir)/resize2fs.8.in 55 $(E) " SUBST $@" 56 $(Q) $(SUBSTITUTE_UPTIME) $(srcdir)/resize2fs.8.in resize2fs.8 57 58test_extent: $(TEST_EXTENT_OBJS) 59 $(E) " LD $@" 60 $(Q) $(CC) $(ALL_LDFLAGS) -o test_extent $(TEST_EXTENT_OBJS) $(LIBS) 61 62installdirs: 63 $(E) " MKINSTALLDIRS $(root_sbindir) $(man8dir)" 64 $(Q) $(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \ 65 $(DESTDIR)$(man8dir) 66 67install: $(PROGS) $(MANPAGES) installdirs 68 $(Q) for i in $(PROGS); do \ 69 echo " INSTALL $(root_sbindir)/$$i"; \ 70 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \ 71 done 72 $(Q) for i in $(MANPAGES); do \ 73 for j in $(COMPRESS_EXT); do \ 74 $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \ 75 done; \ 76 echo " INSTALL_DATA $(man8dir)/$$i"; \ 77 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \ 78 done 79 80install-strip: install 81 $(Q) for i in $(PROGS); do \ 82 echo " STRIP $(root_sbindir)/$$i"; \ 83 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \ 84 done 85 86uninstall: 87 for i in $(PROGS); do \ 88 $(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \ 89 done 90 for i in $(MANPAGES); do \ 91 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \ 92 done 93 94test_extent.out: test_extent $(srcdir)/test_extent.in 95 $(TESTENV) ./test_extent < $(srcdir)/test_extent.in > test_extent.out 96 97check:: test_extent.out 98 $(Q) if cmp -s test_extent.out $(srcdir)/test_extent.in ; then \ 99 echo "Test succeeded." ; \ 100 else \ 101 echo "Test failed!" ; \ 102 diff test_extent.out $(srcdir)/test_extent.in ; \ 103 exit 1 ; \ 104 fi 105 106clean:: 107 $(RM) -f $(PROGS) $(TEST_PROGS) $(MANPAGES) \#* *.s *.o *.a *~ core \ 108 resize2fs.static test_extent.out 109 110mostlyclean: clean 111 112distclean: clean 113 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old 114 115# 116# Kludge to create a "special" e2fsprogs distribution file. 117# 118 119SRCROOT = `echo e2fsprogs-@E2FSPROGS_VERSION@ | sed -e 's/-WIP//' \ 120 -e 's/pre-//' -e 's/-PLUS//'` 121TAR=tar 122 123$(top_srcdir)/.exclude-file: 124 a=$(SRCROOT); \ 125 (cd $(top_srcdir)/.. ; find e2fsprogs \( -name \*~ -o -name \*.orig \ 126 -o -name CVS -o -name \*.rej \) -print) \ 127 | sed -e "s/e2fsprogs/$$a/" > $(top_srcdir)/.exclude-file 128 echo "$(SRCROOT)/build" >> $(top_srcdir)/.exclude-file 129 echo "$(SRCROOT)/rpm.log" >> $(top_srcdir)/.exclude-file 130 echo "$(SRCROOT)/powerquest" >> $(top_srcdir)/.exclude-file 131 echo "$(SRCROOT)/.exclude-file" >> $(top_srcdir)/.exclude-file 132 echo $(SRCROOT)/e2fsprogs-@E2FSPROGS_VERSION@.tar.gz \ 133 >> $(top_srcdir)/.exclude-file 134 echo $(SRCROOT)/e2fsprogs-ALL-@E2FSPROGS_VERSION@.tar.gz \ 135 >> $(top_srcdir)/.exclude-file 136 137source_tar_file: $(top_srcdir)/.exclude-file 138 (cd $(top_srcdir)/..; a=$(SRCROOT); rm -f $$a ; ln -sf e2fsprogs $$a ; \ 139 $(TAR) -c -h -v -f - \ 140 -X $$a/.exclude-file $$a | \ 141 gzip -9 > e2fsprogs-ALL-@E2FSPROGS_VERSION@.tar.gz) 142 rm -f $(top_srcdir)/.exclude-file 143 144# +++ Dependency line eater +++ 145# 146# Makefile dependencies follow. This must be the last section in 147# the Makefile.in file 148# 149extent.o: $(srcdir)/extent.c $(top_builddir)/lib/config.h \ 150 $(top_builddir)/lib/dirpaths.h $(srcdir)/resize2fs.h \ 151 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 152 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 153 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 154 $(top_builddir)/lib/ext2fs/ext2_err.h \ 155 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ 156 $(top_srcdir)/lib/e2p/e2p.h 157resize2fs.o: $(srcdir)/resize2fs.c $(top_builddir)/lib/config.h \ 158 $(top_builddir)/lib/dirpaths.h $(srcdir)/resize2fs.h \ 159 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 160 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 161 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 162 $(top_builddir)/lib/ext2fs/ext2_err.h \ 163 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ 164 $(top_srcdir)/lib/e2p/e2p.h 165main.o: $(srcdir)/main.c $(top_builddir)/lib/config.h \ 166 $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/e2p/e2p.h \ 167 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 168 $(srcdir)/resize2fs.h $(top_srcdir)/lib/ext2fs/ext2fs.h \ 169 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ 170 $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \ 171 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ 172 $(top_srcdir)/version.h 173online.o: $(srcdir)/online.c $(top_builddir)/lib/config.h \ 174 $(top_builddir)/lib/dirpaths.h $(srcdir)/resize2fs.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/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 178 $(top_builddir)/lib/ext2fs/ext2_err.h \ 179 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ 180 $(top_srcdir)/lib/e2p/e2p.h 181resource_track.o: $(srcdir)/resource_track.c $(top_builddir)/lib/config.h \ 182 $(top_builddir)/lib/dirpaths.h $(srcdir)/resize2fs.h \ 183 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 184 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 185 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 186 $(top_builddir)/lib/ext2fs/ext2_err.h \ 187 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ 188 $(top_srcdir)/lib/e2p/e2p.h 189sim_progress.o: $(srcdir)/sim_progress.c $(top_builddir)/lib/config.h \ 190 $(top_builddir)/lib/dirpaths.h $(srcdir)/resize2fs.h \ 191 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \ 192 $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \ 193 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 194 $(top_builddir)/lib/ext2fs/ext2_err.h \ 195 $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/bitops.h \ 196 $(top_srcdir)/lib/e2p/e2p.h 197