blob: 745e8590e9ec6044107410d9b545d7d79c76c24b [file] [log] [blame]
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001srcdir = @srcdir@
2top_srcdir = @top_srcdir@
3VPATH = @srcdir@
4top_builddir = .
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00005my_dir = .
Theodore Ts'o50e1e101997-04-26 13:58:21 +00006INSTALL = @INSTALL@
7
8@MCONFIG@
9
Theodore Ts'o24c9b552008-07-14 22:38:01 -040010% : %.sh
11
Theodore Ts'ocdf186e2001-06-13 22:16:47 +000012@RESIZER_CMT@RESIZE_DIR= resize
13@DEBUGFS_CMT@DEBUGFS_DIR= debugfs
Scott James Remnant39fd3d42009-05-14 13:03:25 +010014@UUID_CMT@UUID_LIB_SUBDIR= lib/uuid
Theodore Ts'o14b596d2009-04-22 09:18:30 -040015@BLKID_CMT@BLKID_LIB_SUBDIR= lib/blkid
Theodore Ts'o0afb9be2018-08-18 11:19:25 -040016@ALL_CMT@SUPPORT_LIB_SUBDIR= lib/support
17@ALL_CMT@E2P_LIB_SUBDIR= lib/e2p
18@ALL_CMT@EXT2FS_LIB_SUBDIR= lib/ext2fs
Theodore Ts'ocdf186e2001-06-13 22:16:47 +000019
Theodore Ts'o0afb9be2018-08-18 11:19:25 -040020LIB_SUBDIRS=lib/et lib/ss $(E2P_LIB_SUBDIR) $(UUID_LIB_SUBDIR) \
21 $(BLKID_LIB_SUBDIR) $(SUPPORT_LIB_SUBDIR) $(EXT2FS_LIB_SUBDIR) intl
22
Theodore Ts'o921f4ad2004-11-19 17:25:27 -050023PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po
Theodore Ts'of3b3dbb1999-07-19 16:18:52 +000024SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests
Theodore Ts'o50e1e101997-04-26 13:58:21 +000025
Theodore Ts'o0355d6d2016-01-01 21:44:12 -050026SUBS= util/subst.conf lib/config.h $(top_builddir)/lib/dirpaths.h \
Theodore Ts'od1154eb2011-09-18 17:34:37 -040027 lib/ext2fs/ext2_types.h lib/blkid/blkid_types.h lib/uuid/uuid_types.h
Theodore Ts'o50e1e101997-04-26 13:58:21 +000028
Theodore Ts'o21c84b71997-04-29 16:15:03 +000029TAR=tar
30
Theodore Ts'o78130a22003-03-14 02:42:42 -050031all:: subs
Theodore Ts'o6928adc2000-05-25 23:28:50 +000032 $(MAKE) libs
Theodore Ts'o0afb9be2018-08-18 11:19:25 -040033@ALL_CMT@ $(MAKE) progs
34@ALL_CMT@ $(MAKE) docs
Theodore Ts'oa4d09611997-04-29 14:28:00 +000035
Theodore Ts'of0eae152008-10-10 14:00:46 -040036subs: $(DEP_SUBSTITUTE)
Theodore Ts'o60b30db2008-09-01 17:59:01 -040037 @for i in $(SUBS) ; do if test -d `dirname $$i` ; \
38 then $(MAKE) $$i || exit $$? ; fi ; done
39 @(if test -d lib/et ; then cd lib/et && $(MAKE) compile_et; fi)
40 @(if test -d lib/ext2fs ; then cd lib/ext2fs && $(MAKE) ext2_err.h; fi)
Theodore Ts'odcb8e1f2016-03-06 20:37:49 -050041 @(if test -d lib/support ; then cd lib/support && $(MAKE) prof_err.h; fi)
Theodore Ts'o94ba8c72003-03-02 02:07:14 -050042
Theodore Ts'o3a0d5d32010-05-17 23:48:52 -040043progs: all-progs-recursive
44libs: all-libs-recursive
45all-progs-recursive all-libs-recursive: subs
Theodore Ts'o50e1e101997-04-26 13:58:21 +000046
Theodore Ts'oe5f0f3e2018-08-18 10:42:44 -040047rpm:
Andreas Dilger90466c12006-06-21 00:05:49 -040048 sh contrib/build-rpm
49
Theodore Ts'o21c84b71997-04-29 16:15:03 +000050docs:
Theodore Ts'o47204ff2004-11-30 10:52:27 -050051 -@test -d doc && cd doc && $(MAKE) libext2fs.info
Theodore Ts'o21c84b71997-04-29 16:15:03 +000052
53install-doc-libs:
Theodore Ts'o47204ff2004-11-30 10:52:27 -050054 -@test -d doc && cd doc && $(MAKE) install-doc-libs
Theodore Ts'o21c84b71997-04-29 16:15:03 +000055
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +000056uninstall-doc-libs:
Theodore Ts'o47204ff2004-11-30 10:52:27 -050057 -@test -d doc && cd doc && $(MAKE) uninstall-doc-libs
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +000058
Theodore Ts'o3ac9f0e1999-07-19 21:02:11 +000059clean-doc:
Theodore Ts'o47204ff2004-11-30 10:52:27 -050060 -@test -d doc && cd doc && $(MAKE) clean
Theodore Ts'o3ac9f0e1999-07-19 21:02:11 +000061
62distclean-doc:
Theodore Ts'o94ba8c72003-03-02 02:07:14 -050063 -test -d doc && cd doc && $(MAKE) distclean
Theodore Ts'o3ac9f0e1999-07-19 21:02:11 +000064
Theodore Ts'o94ba8c72003-03-02 02:07:14 -050065install: subs all-libs-recursive install-progs-recursive \
Theodore Ts'o522798d2004-12-15 11:28:55 -050066 install-shlibs-libs-recursive install-doc-libs
Theodore Ts'o56eb4d42004-09-17 19:54:22 -040067 if test ! -d e2fsck && test ! -d debugfs && test ! -d misc && test ! -d ext2ed ; then $(MAKE) install-libs ; fi
Theodore Ts'o50e1e101997-04-26 13:58:21 +000068
Theodore Ts'o522798d2004-12-15 11:28:55 -050069install-strip: subs all-libs-recursive install-strip-progs-recursive \
70 install-shlibs-strip-libs-recursive install-doc-libs
71
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +000072uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs
73
Theodore Ts'o50e1e101997-04-26 13:58:21 +000074install-libs: install-libs-recursive
75
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +000076uninstall-libs: uninstall-libs-recursive
77
Theodore Ts'ofedfb272014-02-23 00:17:09 -050078coverage.txt: coverage.txt-recursive
79
Matthias Andree58b3d8d2012-05-11 19:14:30 -040080check-recursive: all
81
Theodore Ts'o11b8ef82017-04-26 10:07:18 -040082TAGS clean-recursive distclean-recursive depend-recursive fullcheck-recursive \
83 check-recursive mostlyclean-recursive realclean-recursive \
84 coverage.txt-recursive:
Theodore Ts'o47204ff2004-11-30 10:52:27 -050085 @for subdir in $(SUBDIRS); do \
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000086 if test -d $$subdir ; then \
87 target=`echo $@|$(SED) 's/-recursive//'`; \
88 echo making $$target in $$subdir; \
89 (cd $$subdir && $(MAKE) $$target) || exit 1; \
90 fi ; \
Theodore Ts'o50e1e101997-04-26 13:58:21 +000091 done
92
Theodore Ts'o522798d2004-12-15 11:28:55 -050093all-progs-recursive install-progs-recursive install-strip-progs-recursive \
Theodore Ts'ofedfb272014-02-23 00:17:09 -050094 uninstall-progs-recursive coverage.txt-progs-recursive: all-libs-recursive
Theodore Ts'o47204ff2004-11-30 10:52:27 -050095 @for subdir in $(PROG_SUBDIRS); do \
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000096 if test -d $$subdir ; then \
97 target=`echo $@|$(SED) 's/-progs-recursive//'`; \
98 echo making $$target in $$subdir; \
99 (cd $$subdir && $(MAKE) $$target) || exit 1; \
100 fi ; \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000101 done
102
Theodore Ts'o522798d2004-12-15 11:28:55 -0500103all-libs-recursive install-libs-recursive install-strip-libs-recursive \
104 uninstall-libs-recursive install-shlibs-libs-recursive \
Theodore Ts'ofedfb272014-02-23 00:17:09 -0500105 install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive \
106 coverage.txt-libs-recursive:
Theodore Ts'o47204ff2004-11-30 10:52:27 -0500107 @for subdir in $(LIB_SUBDIRS); do \
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000108 if test -d $$subdir ; then \
109 target=`echo $@|$(SED) 's/-libs-recursive//'`; \
110 echo making $$target in $$subdir; \
111 (cd $$subdir && $(MAKE) $$target) || exit 1; \
112 fi ; \
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000113 done
114
115mostlyclean: mostlyclean-recursive mostlyclean-local
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000116
Theodore Ts'ofedfb272014-02-23 00:17:09 -0500117clean:: clean-recursive clean-local clean-doc
Theodore Ts'o605e6f02004-11-30 22:06:27 -0500118 $(RM) -f $(SUBS)
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000119
Theodore Ts'o9c3ea642008-01-01 17:00:39 -0500120distclean: distclean-doc distclean-recursive
Theodore Ts'oe5f0f3e2018-08-18 10:42:44 -0400121 $(RM) -rf autom4te.cache ext2ed/Makefile po/stamp-po \
Theodore Ts'o59a220d2015-07-01 19:40:23 -0400122 asm_types.h config.log public_config.h parse-types.log
Theodore Ts'o9c3ea642008-01-01 17:00:39 -0500123 $(MAKE) distclean-local
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000124
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000125realclean: realclean-recursive realclean-local
126
Theodore Ts'o9d564f71999-07-03 20:25:58 +0000127depend:: depend-recursive
128
Theodore Ts'o4ea7ea02006-04-09 08:41:55 -0400129lib/ext2fs/ext2_types.h: $(DEP_SUBSTITUTE) asm_types.h \
130 $(srcdir)/lib/ext2fs/ext2_types.h.in
131 cd $(top_builddir); CONFIG_FILES=./lib/ext2fs/ext2_types.h ./config.status
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000132
Theodore Ts'o4ea7ea02006-04-09 08:41:55 -0400133lib/blkid/blkid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
134 $(srcdir)/lib/blkid/blkid_types.h.in
135 cd $(top_builddir); CONFIG_FILES=./lib/blkid/blkid_types.h ./config.status
Theodore Ts'oed1b33e2003-03-01 19:29:01 -0500136
Theodore Ts'o4ea7ea02006-04-09 08:41:55 -0400137lib/uuid/uuid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
138 $(srcdir)/lib/uuid/uuid_types.h.in
139 cd $(top_builddir); CONFIG_FILES=./lib/uuid/uuid_types.h ./config.status
Theodore Ts'o94ba8c72003-03-02 02:07:14 -0500140
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000141mostlyclean-local:
Andreas Dilger83d0b972001-08-04 01:02:34 -0600142 $(RM) -f \#* *~ *.orig core MAKELOG
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +0000143
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000144clean-local: mostlyclean-local
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +0000145
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000146distclean-local: clean-local
Andreas Dilger83d0b972001-08-04 01:02:34 -0600147 $(RM) -f $(SUBS) $(SUBST_CONF) \
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +0000148 config.status config.log config.cache MCONFIG Makefile \
149 $(srcdir)/TAGS $(srcdir)/Makefile.in.old
150
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000151realclean-local: distclean-local
152 $(RM) -f configure
153
Andreas Dilgerdb7cb4b2011-06-15 22:17:38 -0400154check:: all check-recursive
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000155
Theodore Ts'o11b8ef82017-04-26 10:07:18 -0400156fullcheck:: all fullcheck-recursive