Whamcloud - gitweb
LU-335 ldiskfs: SuSE 11 SP1 update for Lustre 2.X
[fs/lustre-release.git] / build / autoMakefile.am.toplevel
1 # This file is included by each package's toplevel autoMakefile[.am],
2 # which must define SUBDIRS as a minimum.
3
4 AUTOMAKE_OPTIONS = foreign
5
6 FIND_TAG_FILES_CMD = find $(top_srcdir) \
7                      -path $(top_srcdir)/ldiskfs/ldiskfs/linux-stage -prune -false -o\
8                      -type f -name '*.[hc]'
9
10 # these empty rules are needed so that automake doesn't add its own
11 # recursive rules
12 etags-recursive:
13
14 ctags-recursive:
15
16 tags-recursive:
17
18 TAGS: etags
19
20 tags: ctags etags
21
22 etags:
23         $(RM) $(top_srcdir)/TAGS
24         ETAGSF=`etags --version | grep -iq exuberant && \
25                 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
26         $(FIND_TAG_FILES_CMD) | xargs etags $$ETAGSF -a
27
28 ctags:
29         $(RM) $(top_srcdir)/tags
30         CTAGSF=`ctags --version | grep -iq exuberant && \
31                 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
32         $(FIND_TAG_FILES_CMD) | xargs ctags $$CTAGSF -a
33
34 cscope-recursive:
35
36 cscope:
37         $(RM) $(top_srcdir)/cscope*.out $(top_srcdir)/cscope.files
38         $(FIND_TAG_FILES_CMD) > cscope.files
39         cscope -bRq
40
41 mkid:
42         $(FIND_TAG_FILES_CMD) | xargs mkid
43
44
45 doxygen:  doxygen-api doxygen-ref
46
47 doxygen-%: build/doxyfile.%
48            doxygen $<
49
50 if MODULES
51 sources: all-sources
52
53 all-sources: $(MODULE_SYMVERS_DEPS)
54         for dir in $(SOURCES_SUBDIRS) ; do \
55                 $(MAKE) sources -C $$dir || exit $$? ; \
56         done
57
58 if LINUX
59 all-am: modules
60
61 if !LINUX25
62 DEP = dep
63 dep: .depend
64
65 .depend: all-sources
66         $(MAKE) $(ARCH_UM) CC="$(CC)" -C $(LINUX_OBJ)                \
67         -f $(PWD)/build/Makefile LUSTRE_LINUX_CONFIG=$(LINUX_CONFIG) \
68         -o scripts -o include/config/MARKER _sfdep_$(PWD)            \
69         _FASTDEP_ALL_SUB_DIRS="$(PWD)"
70
71 CLEANFILES = .depend
72 endif # !LINUX25
73
74 modules: $(DEP) all-sources
75         $(MAKE) $(ARCH_UM) CC="$(CC)" -C $(LINUX_OBJ)                \
76         -f $(PWD)/build/Makefile LUSTRE_LINUX_CONFIG=$(LINUX_CONFIG) \
77         LINUXINCLUDE='$(EXTRA_LNET_INCLUDE) -I$$(srctree)/arch/$$(SRCARCH)/include -Iinclude $$(if $$(KBUILD_SRC),-Iinclude2 -I$$(srctree)/include) -include include/$(AUTOCONF_HDIR)/autoconf.h' \
78         $(MODULE_TARGET)=$(PWD) -o tmp_include_depends -o scripts -o \
79         include/config/MARKER $@
80 endif # LINUX
81
82 endif # MODULES
83
84 dist-hook:
85         $(RM) $(distdir)/ldiskfs/*.spec
86         $(RM) $(distdir)/lustre-iokit/*.spec
87         find $(distdir) -name .deps -o \
88                         -name CVS -o \
89                         -name .svn -o \
90                         -name .git -o \
91                         -name .#* | xargs rm -rf
92         $(MAKE) $(AM_MAKEFLAGS) \
93           top_distdir="$(top_distdir)" distdir="$(distdir)" \
94           module-dist-hook
95
96 EXTRA_DIST = @PACKAGE_TARNAME@.spec                                     \
97         build/Makefile build/autoMakefile.am.toplevel build/lbuild*     \
98         build/Rules.in                                                  \
99         build/update_oldconfig                                          \
100         build/autoconf/lustre-build-linux.m4                            \
101         build/autoconf/lustre-build-darwin.m4                           \
102         build/autoconf/lustre-build-ldiskfs.m4                          \
103         build/autoconf/lustre-build.m4 build/rdac_spec                  \
104         build/mptlinux.spec.patch build/patches                         \
105         build/funcs.sh build/find_linux_rpms build/exit_traps.sh
106
107 rpms-real: @PACKAGE_TARNAME@.spec dist Makefile
108         CONFIGURE_ARGS=$$(echo $$(eval echo $(ac_configure_args)) | sed -re 's/--(en|dis)able-tests//'); \
109         if [ -n "@LINUX@" ]; then \
110                 CONFIGURE_ARGS=$$(echo $$(eval echo $$CONFIGURE_ARGS) | sed -re 's/--with-linux=[^ ][^ ]*//'); \
111                 RPMARGS="--define \"kdir @LINUX@\""; \
112                 CONFIGURE_ARGS=$$(echo $$(eval echo $$CONFIGURE_ARGS) | sed -re 's/--with-linux-obj=[^ ][^ ]*//'); \
113                 if [ -n "@LINUX_OBJ@" -a "@LINUX_OBJ@" != "@LINUX@" ]; then \
114                         RPMARGS="$$RPMARGS --define \"kobjdir @LINUX_OBJ@\""; \
115                 fi; \
116         fi; \
117         CONFIGURE_ARGS=$$(echo $$(eval echo $$CONFIGURE_ARGS) | sed -re 's/--with-release=[^ ][^ ]*//'); \
118         RPMARGS="$$RPMARGS --define \"configure_args $$CONFIGURE_ARGS\""; \
119         if ! $(BUILD_TESTS); then \
120                 RPMARGS="$$RPMARGS --define \"build_lustre_tests 0\""; \
121         fi; \
122         if ! $(BUILD_SERVER); then \
123                 RPMARGS="$$RPMARGS --define \"lustre_name lustre-client\""; \
124         fi; \
125         echo "Building Lustre RPM with $$RPMARGS"; \
126         eval rpmbuild $$RPMARGS -ta $(distdir).tar.gz
127
128 srpm-real: @PACKAGE_TARNAME@.spec dist Makefile
129         if ! $(BUILD_TESTS); then \
130                 RPMARGS="--define \"build_lustre_tests 0\""; \
131         fi; \
132         eval rpmbuild $$RPMARGS -ta $(distdir).tar.gz
133
134 rpms:
135         for subdir in $(RPM_SUBDIRS) ; do                               \
136                 echo "Making rpms in $$subdir";                         \
137                 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) rpms);          \
138                 echo "Finished rpms in $$subdir";                       \
139         done;                                                           \
140         $(MAKE) $(AM_MAKEFLAGS) rpms-real
141
142 srpm:
143         for subdir in $(RPM_SUBDIRS) ; do                               \
144                 echo "Making srpm in $$subdir";                         \
145                 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) srpm);          \
146                 echo "Finished srpms in $$subdir";                      \
147         done;                                                           \
148         $(MAKE) $(AM_MAKEFLAGS) srpm-real
149
150 # In the debs target, first make sure what's in the changelog reflects
151 # the software version.  Here's how we could dig the version out of the
152 # autoconf version file directly:
153 # lversion=$$(sed -ne 's/m4_define(\[LUSTRE_[A-Z][A-Z]*\],\[\([0-9][0-9]*\)\])$$/\1/p'
154 #       lustre/autoconf/lustre-version.ac | tr '\n' '.' | sed -e 's/.$//');
155 #
156 # However, one cannot really run "make debs" without having done a
157 # configure first, so we could use the easier method of digging the
158 # version out of the config.h file.
159 debs:
160         lversion=$$(sed -ne 's/^#define VERSION "\(.*\)"$$/\1/p' config.h); \
161         cversion=$$(sed -ne '1s/^lustre (\(.*\)-[0-9][0-9]*).*$$/\1/p' debian/changelog); \
162         if [ "$$lversion" != "$$cversion" ]; then \
163                 echo -e "1i\nlustre ($$lversion-1) unstable; urgency=low\n\n  * Automated changelog entry update\n\n -- Brian J. Murrell <brian@interlinx.bc.ca>  $$(date -R)\n\n.\nwq" | ed debian/changelog; \
164         fi; \
165         rm -rf debs
166         dpkg-buildpackage -I.git -I\*.out[0-9]\* -I\*.swp || { \
167                 rc=$${PIPESTATUS[0]}; \
168                 [ $${rc} -gt 1 ] && exit $${rc}; \
169                 exit 0; \
170         }
171         export KPKG_DEST_DIR="$$(pwd)/.." && \
172         version=$$(sed -ne '1s/^lustre (\(.*\)).*$$/\1/p' debian/changelog) && \
173         rm -rf debian/tmp/modules-deb && \
174         mkdir debian/tmp/modules-deb && \
175         pushd debian/tmp/modules-deb && \
176         dpkg -x ../../../../lustre-source_$${version}_all.deb $$(pwd) && \
177         mkdir usr_src/ && \
178         tar -C usr_src/ -xjf usr/src/lustre.tar.bz2 && \
179         chmod 755 usr_src/modules/lustre/debian/rules && \
180         mkdir -p usr_share_modass && \
181         ln -s /usr/share/modass/include/ usr_share_modass/ && \
182         ln -s /usr/share/modass/packages/ usr_share_modass/ && \
183         echo "lustre" > usr_share_modass/compliant.list && \
184         export MA_DIR=$$(pwd)/usr_share_modass && \
185         KVERS=$${KVERS:-$(LINUXRELEASE)}; \
186         m-a build $${KVERS:+-l $$KVERS} -i -u $$(pwd) lustre && \
187         popd && \
188         VER=$$(sed -ne '1s/^lustre (\(.*-[0-9][0-9]*\)).*$$/\1/p' debian/changelog); \
189         mkdir -p debs && \
190         mv ../liblustre_$${VER}_*.deb ../linux-patch-lustre_$${VER}_all.deb ../lustre-dev_$${VER}_*.deb ../lustre-source_$${VER}_all.deb ../lustre-tests_$${VER}_*.deb ../lustre-utils_$${VER}_*.deb ../lustre_$${VER}.dsc ../lustre_$${VER}_*.changes ../lustre_$${VER%-[0-9]*}.orig.tar.gz ../lustre_$${VER}.diff.gz ../lustre-client-modules-$${KVERS}_$${VER}_*.deb debs/