Whamcloud - gitweb
add "make rpm" target to top-level Makefile
[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 @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 rpm:
33         sh contrib/build-rpm
34
35 docs:
36         -@test -d doc && cd doc && $(MAKE) libext2fs.info
37
38 install-doc-libs:
39         -@test -d doc && cd doc && $(MAKE) install-doc-libs
40
41 uninstall-doc-libs:
42         -@test -d doc && cd doc && $(MAKE) uninstall-doc-libs
43
44 clean-doc:
45         -@test -d doc && cd doc && $(MAKE) clean
46
47 distclean-doc:
48         -test -d doc && cd doc && $(MAKE) distclean
49
50 install: subs all-libs-recursive install-progs-recursive \
51   install-shlibs-libs-recursive install-doc-libs
52         if test ! -d e2fsck && test ! -d debugfs && test ! -d misc && test ! -d ext2ed ; then $(MAKE) install-libs ; fi
53
54 install-strip: subs all-libs-recursive install-strip-progs-recursive \
55   install-shlibs-strip-libs-recursive install-doc-libs
56
57 uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs
58
59 install-libs: install-libs-recursive
60
61 uninstall-libs: uninstall-libs-recursive
62
63 TAGS clean-recursive distclean-recursive depend-recursive check-recursive \
64   mostlyclean-recursive realclean-recursive:
65         @for subdir in $(SUBDIRS); do \
66           if test -d $$subdir ; then \
67             target=`echo $@|$(SED) 's/-recursive//'`; \
68             echo making $$target in $$subdir; \
69             (cd $$subdir && $(MAKE) $$target) || exit 1; \
70           fi ; \
71         done
72
73 all-progs-recursive install-progs-recursive install-strip-progs-recursive \
74   uninstall-progs-recursive:
75         @for subdir in $(PROG_SUBDIRS); do \
76           if test -d $$subdir ; then \
77             target=`echo $@|$(SED) 's/-progs-recursive//'`; \
78             echo making $$target in $$subdir; \
79             (cd $$subdir && $(MAKE) $$target) || exit 1; \
80           fi ; \
81         done
82
83 all-libs-recursive install-libs-recursive install-strip-libs-recursive \
84   uninstall-libs-recursive install-shlibs-libs-recursive \
85   install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive:
86         @for subdir in $(LIB_SUBDIRS); do \
87           if test -d $$subdir ; then \
88             target=`echo $@|$(SED) 's/-libs-recursive//'`; \
89             echo making $$target in $$subdir; \
90             (cd $$subdir && $(MAKE) $$target) || exit 1; \
91           fi ; \
92         done
93
94 mostlyclean: mostlyclean-recursive mostlyclean-local
95
96 clean: clean-recursive clean-local clean-doc
97         $(RM) -f $(SUBS) 
98
99 distclean: distclean-doc distclean-recursive distclean-local 
100         $(RM) -rf autom4te.cache e2fsprogs.spec ext2ed/Makefile po/stamp-po
101
102 realclean: realclean-recursive realclean-local
103
104 depend:: depend-recursive
105
106 lib/ext2fs/ext2_types.h: $(DEP_SUBSTITUTE) asm_types.h \
107                 $(srcdir)/lib/ext2fs/ext2_types.h.in
108         cd $(top_builddir); CONFIG_FILES=./lib/ext2fs/ext2_types.h ./config.status
109
110 lib/blkid/blkid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
111                 $(srcdir)/lib/blkid/blkid_types.h.in
112         cd $(top_builddir); CONFIG_FILES=./lib/blkid/blkid_types.h ./config.status
113
114 lib/uuid/uuid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
115                 $(srcdir)/lib/uuid/uuid_types.h.in
116         cd $(top_builddir); CONFIG_FILES=./lib/uuid/uuid_types.h ./config.status
117
118 mostlyclean-local:
119         $(RM) -f \#* *~ *.orig core MAKELOG 
120
121 clean-local: mostlyclean-local
122
123 distclean-local: clean-local
124         $(RM) -f $(SUBS) $(SUBST_CONF) \
125                 config.status config.log config.cache MCONFIG Makefile \
126                 $(srcdir)/TAGS $(srcdir)/Makefile.in.old
127
128 realclean-local: distclean-local
129         $(RM) -f configure
130
131 check:: subs check-recursive
132