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