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