1 srcdir = @srcdir@ 2 top_srcdir = @top_srcdir@ 3 VPATH = @srcdir@ 4 top_builddir = . 5 my_dir = . 6 INSTALL = @INSTALL@ 7 8 @MCONFIG@ 9 10 @RESIZER_CMT@RESIZE_DIR= resize 11 @DEBUGFS_CMT@DEBUGFS_DIR= debugfs 12 13 LIB_SUBDIRS=lib/et lib/ss lib/e2p lib/ext2fs lib/uuid lib/blkid intl 14 PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po 15 SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests 16 17 SUBS= lib/ext2fs/ext2_types.h lib/blkid/blkid_types.h lib/uuid/uuid_types.h 18 19 TAR=tar 20 21 all:: subs 22 $(MAKE) libs 23 $(MAKE) progs 24 $(MAKE) docs 25 26 subs: 27 @for i in $(SUBS) ; do if test -d `dirname $$i` ; then $(MAKE) $$i ; fi ; done 28 29 progs: subs all-progs-recursive 30 libs: subs all-libs-recursive 31 32 e2fsprogs.spec: $(DEP_SUBSTITUTE) e2fsprogs.spec.in 33 cd $(top_builddir); CONFIG_FILES=./e2fsprogs.spec ./config.status 34 35 rpm: e2fsprogs.spec 36 sh contrib/build-rpm 37 38 docs: 39 -@test -d doc && cd doc && $(MAKE) libext2fs.info 40 41 install-doc-libs: 42 -@test -d doc && cd doc && $(MAKE) install-doc-libs 43 44 uninstall-doc-libs: 45 -@test -d doc && cd doc && $(MAKE) uninstall-doc-libs 46 47 clean-doc: 48 -@test -d doc && cd doc && $(MAKE) clean 49 50 distclean-doc: 51 -test -d doc && cd doc && $(MAKE) distclean 52 53 install: subs all-libs-recursive install-progs-recursive \ 54 install-shlibs-libs-recursive install-doc-libs 55 if test ! -d e2fsck && test ! -d debugfs && test ! -d misc && test ! -d ext2ed ; then $(MAKE) install-libs ; fi 56 57 install-strip: subs all-libs-recursive install-strip-progs-recursive \ 58 install-shlibs-strip-libs-recursive install-doc-libs 59 60 uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs 61 62 install-libs: install-libs-recursive 63 64 uninstall-libs: uninstall-libs-recursive 65 66 TAGS clean-recursive distclean-recursive depend-recursive check-recursive \ 67 mostlyclean-recursive realclean-recursive: 68 @for subdir in $(SUBDIRS); do \ 69 if test -d $$subdir ; then \ 70 target=`echo $@|$(SED) 's/-recursive//'`; \ 71 echo making $$target in $$subdir; \ 72 (cd $$subdir && $(MAKE) $$target) || exit 1; \ 73 fi ; \ 74 done 75 76 all-progs-recursive install-progs-recursive install-strip-progs-recursive \ 77 uninstall-progs-recursive: all-libs-recursive 78 @for subdir in $(PROG_SUBDIRS); do \ 79 if test -d $$subdir ; then \ 80 target=`echo $@|$(SED) 's/-progs-recursive//'`; \ 81 echo making $$target in $$subdir; \ 82 (cd $$subdir && $(MAKE) $$target) || exit 1; \ 83 fi ; \ 84 done 85 86 all-libs-recursive install-libs-recursive install-strip-libs-recursive \ 87 uninstall-libs-recursive install-shlibs-libs-recursive \ 88 install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive: 89 @for subdir in $(LIB_SUBDIRS); do \ 90 if test -d $$subdir ; then \ 91 target=`echo $@|$(SED) 's/-libs-recursive//'`; \ 92 echo making $$target in $$subdir; \ 93 (cd $$subdir && $(MAKE) $$target) || exit 1; \ 94 fi ; \ 95 done 96 97 mostlyclean: mostlyclean-recursive mostlyclean-local 98 99 clean: clean-recursive clean-local clean-doc 100 $(RM) -f $(SUBS) 101 102 distclean: distclean-doc distclean-recursive 103 $(RM) -rf autom4te.cache e2fsprogs.spec ext2ed/Makefile po/stamp-po 104 $(MAKE) distclean-local 105 106 realclean: realclean-recursive realclean-local 107 108 depend:: depend-recursive 109 110 lib/ext2fs/ext2_types.h: $(DEP_SUBSTITUTE) asm_types.h \ 111 $(srcdir)/lib/ext2fs/ext2_types.h.in 112 cd $(top_builddir); CONFIG_FILES=./lib/ext2fs/ext2_types.h ./config.status 113 114 lib/blkid/blkid_types.h: $(DEP_SUBSTITUTE) asm_types.h \ 115 $(srcdir)/lib/blkid/blkid_types.h.in 116 cd $(top_builddir); CONFIG_FILES=./lib/blkid/blkid_types.h ./config.status 117 118 lib/uuid/uuid_types.h: $(DEP_SUBSTITUTE) asm_types.h \ 119 $(srcdir)/lib/uuid/uuid_types.h.in 120 cd $(top_builddir); CONFIG_FILES=./lib/uuid/uuid_types.h ./config.status 121 122 mostlyclean-local: 123 $(RM) -f \#* *~ *.orig core MAKELOG 124 125 clean-local: mostlyclean-local 126 127 distclean-local: clean-local 128 $(RM) -f $(SUBS) $(SUBST_CONF) \ 129 config.status config.log config.cache MCONFIG Makefile \ 130 $(srcdir)/TAGS $(srcdir)/Makefile.in.old 131 132 realclean-local: distclean-local 133 $(RM) -f configure 134 135 check:: subs check-recursive 136 137