X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=Makefile.in;h=0aa2d72c82c53e7112114c697af87e665258be4d;hb=c573b3c046027a995d7e25dfdc25231f958faee0;hp=15fd1ae1a62c7db44f9702e6f6fd828e39341b00;hpb=74becf3c0a065f8d64e07ce4d31f9fe53be91d62;p=tools%2Fe2fsprogs.git diff --git a/Makefile.in b/Makefile.in index 15fd1ae..0aa2d72 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2,78 +2,178 @@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ top_builddir = . +my_dir = . INSTALL = @INSTALL@ +MKDIR_P = @MKDIR_P@ @MCONFIG@ -LIB_SUBDIRS=lib/et lib/ss lib/ext2fs lib/e2p -PROG_SUBDIRS=e2fsck debugfs misc -SUBDIRS=$(LIB_SUBDIRS) $(PROG_SUBDIRS) tests +% : %.sh -all:: libs progs check +@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) + +SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests + +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 +@ALL_CMT@ $(MAKE) progs +@ALL_CMT@ $(MAKE) docs + +all-static:: + $(MAKE) libs +@ALL_CMT@ $(MAKE) static-progs + +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) progs: all-progs-recursive +static-progs: all-static-progs-recursive libs: all-libs-recursive +all-progs-recursive all-libs-recursive:: subs + +e2fsprogs-RHEL-6.spec: $(DEP_SUBSTITUTE) e2fsprogs-RHEL-6.spec.in + cd $(top_builddir); CONFIG_FILES=./e2fsprogs-RHEL-6.spec ./config.status + +e2fsprogs-SUSE_LINUX-11+.spec: $(DEP_SUBSTITUTE) e2fsprogs-SUSE_LINUX-11+.spec.in + cd $(top_builddir); CONFIG_FILES=./e2fsprogs-SUSE_LINUX-11+.spec ./config.status + +e2fsprogs-RHEL-7+.spec: $(DEP_SUBSTITUTE) e2fsprogs-RHEL-7+.spec.in + cd $(top_builddir); CONFIG_FILES=./e2fsprogs-RHEL-7+.spec ./config.status + +rpm: e2fsprogs-RHEL-6.spec e2fsprogs-SUSE_LINUX-11+.spec e2fsprogs-RHEL-7+.spec + sh contrib/build-rpm + +docs: + -@test -d doc && cd doc && $(MAKE) libext2fs.info + +install-doc-libs: + -@test -d doc && cd doc && $(MAKE) install-doc-libs + +uninstall-doc-libs: + -@test -d doc && cd doc && $(MAKE) uninstall-doc-libs + +clean-doc: + -@test -d doc && cd doc && $(MAKE) clean + +distclean-doc: + -test -d doc && cd doc && $(MAKE) distclean + +install: subs all-libs-recursive install-progs-recursive \ + install-shlibs-libs-recursive install-doc-libs +@SUBSET_CMT@ $(MAKE) install-libs -install: all-libs-recursive install-progs-recursive \ - install-shlibs-libs-recursive - (export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages) +install-strip: subs all-libs-recursive install-strip-progs-recursive \ + install-shlibs-strip-libs-recursive install-doc-libs + +uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs install-libs: install-libs-recursive -TAGS clean-recursive distclean-recursive \ - mostlyclean-recursive realclean-recursive install-recursive: - for subdir in $(SUBDIRS); do \ - target=`echo $@|$(SED) 's/-recursive//'`; \ - echo making $$target in $$subdir; \ - (cd $$subdir && $(MAKE) $$target) || exit 1; \ - done +uninstall-libs: uninstall-libs-recursive + +coverage.txt: coverage.txt-recursive -all-progs-recursive install-progs-recursive: - for subdir in $(PROG_SUBDIRS); do \ - target=`echo $@|$(SED) 's/-progs-recursive//'`; \ - echo making $$target in $$subdir; \ - (cd $$subdir && $(MAKE) $$target) || exit 1; \ +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//'`; \ + echo making $$target in $$subdir; \ + (cd $$subdir && $(MAKE) $$target) || exit 1; \ + fi ; \ done -all-libs-recursive install-libs-recursive install-shlibs-libs-recursive: - for subdir in $(LIB_SUBDIRS); do \ - target=`echo $@|$(SED) 's/-libs-recursive//'`; \ - echo making $$target in $$subdir; \ - (cd $$subdir && $(MAKE) $$target) || exit 1; \ +all-progs-recursive install-progs-recursive install-strip-progs-recursive \ + 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 \ + coverage.txt-libs-recursive:: + @for subdir in $(LIB_SUBDIRS); do \ + if test -d $$subdir ; then \ + target=`echo $@|$(SED) 's/-libs-recursive//'`; \ + echo making $$target in $$subdir; \ + (cd $$subdir && $(MAKE) $$target) || exit 1; \ + fi ; \ done mostlyclean: mostlyclean-recursive mostlyclean-local -clean: clean-recursive clean-local -distclean: distclean-recursive distclean-local + +clean:: clean-recursive clean-local clean-doc + $(RM) -f $(SUBS) + +distclean: distclean-doc distclean-recursive + $(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 +depend:: depend-recursive + +lib/ext2fs/ext2_types.h: $(DEP_SUBSTITUTE) asm_types.h \ + $(srcdir)/lib/ext2fs/ext2_types.h.in + cd $(top_builddir); CONFIG_FILES=./lib/ext2fs/ext2_types.h ./config.status + +lib/blkid/blkid_types.h: $(DEP_SUBSTITUTE) asm_types.h \ + $(srcdir)/lib/blkid/blkid_types.h.in + cd $(top_builddir); CONFIG_FILES=./lib/blkid/blkid_types.h ./config.status + +lib/uuid/uuid_types.h: $(DEP_SUBSTITUTE) asm_types.h \ + $(srcdir)/lib/uuid/uuid_types.h.in + cd $(top_builddir); CONFIG_FILES=./lib/uuid/uuid_types.h ./config.status + mostlyclean-local: - $(RM) -f \#* *~ core MAKELOG + $(RM) -f \#* *~ *.orig core MAKELOG + clean-local: mostlyclean-local + distclean-local: clean-local - $(RM) -f include/linux/types.h - $(RM) -f config.status config.log config.cache MCONFIG Makefile + $(RM) -f $(SUBS) $(SUBST_CONF) \ + config.status config.log config.cache MCONFIG Makefile \ + $(srcdir)/TAGS $(srcdir)/Makefile.in.old + realclean-local: distclean-local $(RM) -f configure -check: - (cd tests; make check) - -distribution_tar_file: - rm -rf /tmp/dest - make DESTDIR=/tmp/dest install - cd .. - cp -r $(srcdir)/README $(srcdir)/install-utils /tmp/dest - cp $(srcdir)/INSTALL.@BINARY_TYPE@ /tmp/dest/INSTALL - (cd /tmp/dest; tar cf - . ) | gzip -9 \ - > e2fsprogs-@E2FSPROGS_VERSION@-@BINARY_TYPE@.tar.gz - - -Makefile: config.status $(srcdir)/Makefile.in - CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status +check:: all check-recursive -config.status: $(srcdir)/configure - ./config.status --recheck -$(srcdir)/configure: $(srcdir)/configure.in - cd $(srcdir) && autoconf +fullcheck:: all fullcheck-recursive