X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=Makefile.in;h=79b71165002de98d93104deeb8231c9945ce9020;hb=e8b05eb89c75b50876ffc9e23b17811bc429fe19;hp=47560fd99d3dd3696e1cb6544ac059d8340157ec;hpb=428f6b32a9029e1f0bc2559233954955a6aae64c;p=tools%2Fe2fsprogs.git diff --git a/Makefile.in b/Makefile.in index 47560fd..79b7116 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,35 +4,56 @@ VPATH = @srcdir@ top_builddir = . my_dir = . INSTALL = @INSTALL@ +MKDIR_P = @MKDIR_P@ @MCONFIG@ +% : %.sh + @RESIZER_CMT@RESIZE_DIR= resize @DEBUGFS_CMT@DEBUGFS_DIR= debugfs +@UUID_CMT@UUID_LIB_SUBDIR= lib/uuid +@BLKID_CMT@BLKID_LIB_SUBDIR= lib/blkid +@E2SCRUB_CMT@E2SCRUB_DIR= scrub +@ALL_CMT@SUPPORT_LIB_SUBDIR= lib/support +@ALL_CMT@E2P_LIB_SUBDIR= lib/e2p +@ALL_CMT@EXT2FS_LIB_SUBDIR= lib/ext2fs + +LIB_SUBDIRS=lib/et lib/ss $(E2P_LIB_SUBDIR) $(UUID_LIB_SUBDIR) \ + $(BLKID_LIB_SUBDIR) $(SUPPORT_LIB_SUBDIR) $(EXT2FS_LIB_SUBDIR) + +PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs \ + tests/fuzz po $(E2SCRUB_DIR) -LIB_SUBDIRS=lib/et lib/ss lib/e2p lib/uuid lib/ext2fs lib/blkid intl -PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests -SUBS= lib/ext2fs/ext2_types.h lib/blkid/blkid_types.h lib/uuid/uuid_types.h +SUBS= util/subst.conf lib/config.h $(top_builddir)/lib/dirpaths.h \ + lib/ext2fs/ext2_types.h lib/blkid/blkid_types.h lib/uuid/uuid_types.h TAR=tar all:: subs $(MAKE) libs - $(MAKE) progs - $(MAKE) docs +@ALL_CMT@ $(MAKE) progs +@ALL_CMT@ $(MAKE) docs -subs: - @for i in $(SUBS) ; do if test -d `dirname $$i` ; then $(MAKE) $$i ; fi ; done +all-static:: + $(MAKE) libs +@ALL_CMT@ $(MAKE) static-progs -progs: subs all-progs-recursive -libs: subs all-libs-recursive +subs: $(DEP_SUBSTITUTE) + @for i in $(SUBS) ; do if test -d `dirname $$i` ; \ + then $(MAKE) $$i || exit $$? ; fi ; done + @(if test -d lib/et ; then cd lib/et && $(MAKE) compile_et; fi) + @(if test -d lib/ext2fs ; then cd lib/ext2fs && $(MAKE) ext2_err.h; fi) + @(if test -d lib/support ; then cd lib/support && $(MAKE) prof_err.h; fi) -e2fsprogs.spec: $(DEP_SUBSTITUTE) e2fsprogs.spec.in - cd $(top_builddir); CONFIG_FILES=./e2fsprogs.spec ./config.status +progs: all-progs-recursive +static-progs: all-static-progs-recursive +libs: all-libs-recursive +all-progs-recursive all-libs-recursive:: subs -rpm: e2fsprogs.spec +rpm: sh contrib/build-rpm docs: @@ -52,7 +73,7 @@ distclean-doc: install: subs all-libs-recursive install-progs-recursive \ install-shlibs-libs-recursive install-doc-libs - if test ! -d e2fsck && test ! -d debugfs && test ! -d misc && test ! -d ext2ed ; then $(MAKE) install-libs ; fi +@SUBSET_CMT@ $(MAKE) install-libs install-strip: subs all-libs-recursive install-strip-progs-recursive \ install-shlibs-strip-libs-recursive install-doc-libs @@ -63,8 +84,13 @@ install-libs: install-libs-recursive uninstall-libs: uninstall-libs-recursive -TAGS clean-recursive distclean-recursive depend-recursive check-recursive \ - mostlyclean-recursive realclean-recursive: +coverage.txt: coverage.txt-recursive + +check-recursive: all + +TAGS clean-recursive distclean-recursive depend-recursive fullcheck-recursive \ + check-recursive mostlyclean-recursive realclean-recursive \ + coverage.txt-recursive: @for subdir in $(SUBDIRS); do \ if test -d $$subdir ; then \ target=`echo $@|$(SED) 's/-recursive//'`; \ @@ -74,18 +100,24 @@ TAGS clean-recursive distclean-recursive depend-recursive check-recursive \ done all-progs-recursive install-progs-recursive install-strip-progs-recursive \ - uninstall-progs-recursive: - @for subdir in $(PROG_SUBDIRS); do \ - if test -d $$subdir ; then \ - target=`echo $@|$(SED) 's/-progs-recursive//'`; \ - echo making $$target in $$subdir; \ - (cd $$subdir && $(MAKE) $$target) || exit 1; \ - fi ; \ - done + uninstall-progs-recursive coverage.txt-progs-recursive:: all-libs-recursive + + +@ALL_CMT@all-progs-recursive all-static-progs-recursive install-progs-recursive \ +@ALL_CMT@ install-strip-progs-recursive uninstall-progs-recursive \ +@ALL_CMT@ coverage.txt-progs-recursive:: all-libs-recursive +@ALL_CMT@ @for subdir in $(PROG_SUBDIRS); do \ +@ALL_CMT@ if test -d $$subdir ; then \ +@ALL_CMT@ target=`echo $@|$(SED) 's/-progs-recursive//'`; \ +@ALL_CMT@ echo making $$target in $$subdir; \ +@ALL_CMT@ (cd $$subdir && $(MAKE) $$target) || exit 1; \ +@ALL_CMT@ fi ; \ +@ALL_CMT@ done all-libs-recursive install-libs-recursive install-strip-libs-recursive \ uninstall-libs-recursive install-shlibs-libs-recursive \ - install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive: + install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive \ + coverage.txt-libs-recursive:: @for subdir in $(LIB_SUBDIRS); do \ if test -d $$subdir ; then \ target=`echo $@|$(SED) 's/-libs-recursive//'`; \ @@ -96,11 +128,12 @@ all-libs-recursive install-libs-recursive install-strip-libs-recursive \ mostlyclean: mostlyclean-recursive mostlyclean-local -clean: clean-recursive clean-local clean-doc +clean:: clean-recursive clean-local clean-doc $(RM) -f $(SUBS) distclean: distclean-doc distclean-recursive - $(RM) -rf autom4te.cache e2fsprogs.spec ext2ed/Makefile po/stamp-po + $(RM) -rf autom4te.cache ext2ed/Makefile po/stamp-po \ + asm_types.h config.log public_config.h parse-types.log $(MAKE) distclean-local realclean: realclean-recursive realclean-local @@ -132,5 +165,6 @@ distclean-local: clean-local realclean-local: distclean-local $(RM) -f configure -check:: subs check-recursive +check:: all check-recursive +fullcheck:: all fullcheck-recursive