]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - Makefile.in
tests: teach test_script the --failed option
[thirdparty/e2fsprogs.git] / Makefile.in
CommitLineData
50e1e10f
TT
1srcdir = @srcdir@
2top_srcdir = @top_srcdir@
3VPATH = @srcdir@
4top_builddir = .
fc6d9d51 5my_dir = .
50e1e10f
TT
6INSTALL = @INSTALL@
7
8@MCONFIG@
9
24c9b558
TT
10% : %.sh
11
cdf186e4
TT
12@RESIZER_CMT@RESIZE_DIR= resize
13@DEBUGFS_CMT@DEBUGFS_DIR= debugfs
39fd3d4f 14@UUID_CMT@UUID_LIB_SUBDIR= lib/uuid
14b596d4 15@BLKID_CMT@BLKID_LIB_SUBDIR= lib/blkid
f34af41b 16SUPPORT_LIB_SUBDIR= lib/support
cdf186e4 17
f34af41b 18LIB_SUBDIRS=lib/et lib/ss lib/e2p $(UUID_LIB_SUBDIR) $(BLKID_LIB_SUBDIR) $(SUPPORT_LIB_SUBDIR) lib/ext2fs intl
921f4ad5 19PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po
f3b3dbbe 20SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests
50e1e10f 21
0355d6d0 22SUBS= util/subst.conf lib/config.h $(top_builddir)/lib/dirpaths.h \
d1154eb4 23 lib/ext2fs/ext2_types.h lib/blkid/blkid_types.h lib/uuid/uuid_types.h
50e1e10f 24
21c84b71
TT
25TAR=tar
26
78130a21 27all:: subs
6928adc9
TT
28 $(MAKE) libs
29 $(MAKE) progs
30 $(MAKE) docs
a4d09610 31
f0eae15c 32subs: $(DEP_SUBSTITUTE)
60b30dba
TT
33 @for i in $(SUBS) ; do if test -d `dirname $$i` ; \
34 then $(MAKE) $$i || exit $$? ; fi ; done
35 @(if test -d lib/et ; then cd lib/et && $(MAKE) compile_et; fi)
36 @(if test -d lib/ext2fs ; then cd lib/ext2fs && $(MAKE) ext2_err.h; fi)
dcb8e1fa 37 @(if test -d lib/support ; then cd lib/support && $(MAKE) prof_err.h; fi)
94ba8c75 38
3a0d5d39
TT
39progs: all-progs-recursive
40libs: all-libs-recursive
41all-progs-recursive all-libs-recursive: subs
50e1e10f 42
54833579
AD
43e2fsprogs.spec: $(DEP_SUBSTITUTE) e2fsprogs.spec.in
44 cd $(top_builddir); CONFIG_FILES=./e2fsprogs.spec ./config.status
45
46rpm: e2fsprogs.spec
90466c19
AD
47 sh contrib/build-rpm
48
21c84b71 49docs:
47204ff9 50 -@test -d doc && cd doc && $(MAKE) libext2fs.info
21c84b71
TT
51
52install-doc-libs:
47204ff9 53 -@test -d doc && cd doc && $(MAKE) install-doc-libs
21c84b71 54
a4b2d3ce 55uninstall-doc-libs:
47204ff9 56 -@test -d doc && cd doc && $(MAKE) uninstall-doc-libs
a4b2d3ce 57
3ac9f0ef 58clean-doc:
47204ff9 59 -@test -d doc && cd doc && $(MAKE) clean
3ac9f0ef
TT
60
61distclean-doc:
94ba8c75 62 -test -d doc && cd doc && $(MAKE) distclean
3ac9f0ef 63
94ba8c75 64install: subs all-libs-recursive install-progs-recursive \
522798d3 65 install-shlibs-libs-recursive install-doc-libs
56eb4d47 66 if test ! -d e2fsck && test ! -d debugfs && test ! -d misc && test ! -d ext2ed ; then $(MAKE) install-libs ; fi
50e1e10f 67
522798d3
TT
68install-strip: subs all-libs-recursive install-strip-progs-recursive \
69 install-shlibs-strip-libs-recursive install-doc-libs
70
a4b2d3ce
TT
71uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs
72
50e1e10f
TT
73install-libs: install-libs-recursive
74
a4b2d3ce
TT
75uninstall-libs: uninstall-libs-recursive
76
fedfb27f
TT
77coverage.txt: coverage.txt-recursive
78
58b3d8d3
MA
79check-recursive: all
80
3e377db2 81TAGS clean-recursive distclean-recursive depend-recursive check-recursive \
fedfb27f 82 mostlyclean-recursive realclean-recursive coverage.txt-recursive:
47204ff9 83 @for subdir in $(SUBDIRS); do \
24b2c7a7
TT
84 if test -d $$subdir ; then \
85 target=`echo $@|$(SED) 's/-recursive//'`; \
86 echo making $$target in $$subdir; \
87 (cd $$subdir && $(MAKE) $$target) || exit 1; \
88 fi ; \
50e1e10f
TT
89 done
90
522798d3 91all-progs-recursive install-progs-recursive install-strip-progs-recursive \
fedfb27f 92 uninstall-progs-recursive coverage.txt-progs-recursive: all-libs-recursive
47204ff9 93 @for subdir in $(PROG_SUBDIRS); do \
24b2c7a7
TT
94 if test -d $$subdir ; then \
95 target=`echo $@|$(SED) 's/-progs-recursive//'`; \
96 echo making $$target in $$subdir; \
97 (cd $$subdir && $(MAKE) $$target) || exit 1; \
98 fi ; \
50e1e10f
TT
99 done
100
522798d3
TT
101all-libs-recursive install-libs-recursive install-strip-libs-recursive \
102 uninstall-libs-recursive install-shlibs-libs-recursive \
fedfb27f
TT
103 install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive \
104 coverage.txt-libs-recursive:
47204ff9 105 @for subdir in $(LIB_SUBDIRS); do \
24b2c7a7
TT
106 if test -d $$subdir ; then \
107 target=`echo $@|$(SED) 's/-libs-recursive//'`; \
108 echo making $$target in $$subdir; \
109 (cd $$subdir && $(MAKE) $$target) || exit 1; \
110 fi ; \
50e1e10f
TT
111 done
112
113mostlyclean: mostlyclean-recursive mostlyclean-local
a4d09610 114
fedfb27f 115clean:: clean-recursive clean-local clean-doc
605e6f0e 116 $(RM) -f $(SUBS)
a4d09610 117
9c3ea642 118distclean: distclean-doc distclean-recursive
59a220dd
TT
119 $(RM) -rf autom4te.cache e2fsprogs.spec ext2ed/Makefile po/stamp-po \
120 asm_types.h config.log public_config.h parse-types.log
9c3ea642 121 $(MAKE) distclean-local
a4d09610 122
50e1e10f
TT
123realclean: realclean-recursive realclean-local
124
9d564f73
TT
125depend:: depend-recursive
126
4ea7ea00
TT
127lib/ext2fs/ext2_types.h: $(DEP_SUBSTITUTE) asm_types.h \
128 $(srcdir)/lib/ext2fs/ext2_types.h.in
129 cd $(top_builddir); CONFIG_FILES=./lib/ext2fs/ext2_types.h ./config.status
130
131lib/blkid/blkid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
132 $(srcdir)/lib/blkid/blkid_types.h.in
133 cd $(top_builddir); CONFIG_FILES=./lib/blkid/blkid_types.h ./config.status
134
135lib/uuid/uuid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
136 $(srcdir)/lib/uuid/uuid_types.h.in
137 cd $(top_builddir); CONFIG_FILES=./lib/uuid/uuid_types.h ./config.status
94ba8c75 138
50e1e10f 139mostlyclean-local:
83d0b970 140 $(RM) -f \#* *~ *.orig core MAKELOG
5c36a2f8 141
50e1e10f 142clean-local: mostlyclean-local
5c36a2f8 143
50e1e10f 144distclean-local: clean-local
83d0b970 145 $(RM) -f $(SUBS) $(SUBST_CONF) \
5c36a2f8
TT
146 config.status config.log config.cache MCONFIG Makefile \
147 $(srcdir)/TAGS $(srcdir)/Makefile.in.old
148
50e1e10f
TT
149realclean-local: distclean-local
150 $(RM) -f configure
151
db7cb4b4 152check:: all check-recursive
50e1e10f 153