Whamcloud - gitweb
b=24093 not all build files/scripts being distributed
[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: $(EXTRA_SOURCES)
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/linux/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/linux-merge-config.awk build/linux-merge-modules.awk      \
99         build/linux-rhconfig.h build/lmake build/Rules.in               \
100         build/lustre-kernel-2.4.spec.in build/suse-functions.sh         \
101         build/suse-post.sh build/suse-postun.sh                         \
102         build/suse-trigger-script.sh.in build/README.kernel-source      \
103         build/sles8-post.sh build/sles8-postun.sh build/sles8-pre.sh    \
104         build/sles8-update_INITRD_MODULES.sh                            \
105         build/sles8-update_rcfile_setting.sh build/update_oldconfig     \
106         build/autoconf/lustre-build-linux.m4                            \
107         build/autoconf/lustre-build-darwin.m4                           \
108         build/autoconf/lustre-build.m4 build/rdac_spec                  \
109         build/mptlinux.spec.patch build/patches
110         build/exit_traps.sh
111
112 rpms-real: @PACKAGE_TARNAME@.spec dist Makefile
113         CONFIGURE_ARGS=$$(echo $$(eval echo $(ac_configure_args)) | sed -re 's/--(en|dis)able-tests//'); \
114         RPMARGS="--define \"configure_args $$CONFIGURE_ARGS\""; \
115         if ! $(BUILD_TESTS); then \
116                 RPMARGS="$$RPMARGS --define \"build_lustre_tests 0\""; \
117         fi; \
118         eval rpmbuild $$RPMARGS -ta $(distdir).tar.gz
119
120 srpm-real: @PACKAGE_TARNAME@.spec dist Makefile
121         if ! $(BUILD_TESTS); then \
122                 RPMARGS="--define \"build_lustre_tests 0\""; \
123         fi; \
124         eval rpmbuild $$RPMARGS -ta $(distdir).tar.gz
125
126 rpms:
127         for subdir in $(RPM_SUBDIRS) ; do                               \
128                 echo "Making rpms in $$subdir";                         \
129                 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) rpms);          \
130                 echo "Finished rpms in $$subdir";                       \
131         done;                                                           \
132         $(MAKE) $(AM_MAKEFLAGS) rpms-real
133
134 srpm:
135         for subdir in $(RPM_SUBDIRS) ; do                               \
136                 echo "Making srpm in $$subdir";                         \
137                 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) srpm);          \
138                 echo "Finished srpms in $$subdir";                      \
139         done;                                                           \
140         $(MAKE) $(AM_MAKEFLAGS) srpm-real
141
142 # In the debs target, first make sure what's in the changelog reflects
143 # the software version.  Here's how we could dig the version out of the
144 # autoconf version file directly:
145 # lversion=$$(sed -ne 's/m4_define(\[LUSTRE_[A-Z][A-Z]*\],\[\([0-9][0-9]*\)\])$$/\1/p'
146 #       lustre/autoconf/lustre-version.ac | tr '\n' '.' | sed -e 's/.$//');
147 #
148 # However, one cannot really run "make debs" without having done a
149 # configure first, so we could use the easier method of digging the
150 # version out of the config.h file.
151 debs:
152         lversion=$$(sed -ne 's/^#define VERSION "\(.*\)"$$/\1/p' config.h); \
153         cversion=$$(sed -ne '1s/^lustre (\(.*\)-[0-9][0-9]*).*$$/\1/p' debian/changelog); \
154         if [ "$$lversion" != "$$cversion" ]; then \
155                 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; \
156         fi; \
157         if [ -d .git ]; then \
158                 ver=$$(git describe --match v\* --tags); \
159                 if [[ $$ver = *-*-* ]]; then \
160                         hash=$${ver##*-}; \
161                         ffw=$${ver#*-}; \
162                         ffw=$${ffw%-*}; \
163                         ver=$${ver%%-*}; \
164                 fi; \
165                 if [ $$ffw -gt 0 ]; then \
166                         tag=$$ver; \
167                         if [[ $$ver =~ ^v([0-9]+_)+([0-9]+|RC[0-9]+)$$ ]]; then \
168                                 ver=$$(echo $$ver | \
169                                   sed -e 's/^v\(.*\)/\1/' \
170                                       -e 's/_RC[[0-9]].*$$//' \
171                                       -e 's/_/./g'); \
172                         fi; \
173                         pdir="debian/patches"; \
174                         if [ -d $$pdir ]; then \
175                                 rm -rf $$pdir; \
176                         fi; \
177                         mkdir $$pdir; \
178                         git format-patch -o $$pdir $$tag..HEAD; \
179                         pushd $$pdir; \
180                         if [ -d ../patched ]; then \
181                                 rm -rf ../patched; \
182                         fi; \
183                         mkdir ../patched; \
184                         rm -f 00list *.dpatch; \
185                         for file in [0-9][0-9][0-9][0-9]-*.patch; do \
186                                 if ! grep -q "^ debian/changelog" $$file; then \
187                                         desc=$$(cat $$file | sed -e '1,/^$$/d' \
188                                                                  -e '/^---$$/,$$d'); \
189                                         dpatch_file=$${file/.patch/.dpatch}; \
190                                         sed -e '1,/^---$$/d' $$file | \
191                                           dpatch patch-template -p "$${file%.patch}" \
192                                           "$$desc" > $$dpatch_file; \
193                                         echo "faked by make debs run from git" > \
194                                           ../patched/$$dpatch_file; \
195                                         echo $$dpatch_file >> 00list; \
196                                 fi; \
197                                 rm -f $$file; \
198                         done; \
199                 fi; \
200         fi
201         rm -rf debs
202         dpkg-buildpackage || { \
203                 rc=$${PIPESTATUS[0]}; \
204                 [ $${rc} -gt 1 ] && exit $${rc}; \
205                 exit 0; \
206         }
207         export KPKG_DEST_DIR="$$(pwd)/.." && \
208         version=$$(sed -ne '1s/^lustre (\(.*\)).*$$/\1/p' debian/changelog) && \
209         rm -rf debian/tmp/modules-deb && \
210         mkdir debian/tmp/modules-deb && \
211         pushd debian/tmp/modules-deb && \
212         dpkg -x ../../../../lustre-source_$${version}_all.deb $$(pwd) && \
213         mkdir usr_src/ && \
214         tar -C usr_src/ -xjf usr/src/lustre.tar.bz2 && \
215         chmod 755 usr_src/modules/lustre/debian/rules && \
216         mkdir -p usr_share_modass && \
217         ln -s /usr/share/modass/include/ usr_share_modass/ && \
218         ln -s /usr/share/modass/packages/ usr_share_modass/ && \
219         echo "lustre" > usr_share_modass/compliant.list && \
220         export MA_DIR=$$(pwd)/usr_share_modass && \
221         KVERS=$${KVERS:-$(LINUXRELEASE)}; \
222         m-a build $${KVERS:+-l $$KVERS} -i -u $$(pwd) lustre && \
223         popd && \
224         VER=$$(sed -ne '1s/^lustre (\(.*-[0-9][0-9]*\)).*$$/\1/p' debian/changelog); \
225         mkdir -p debs && \
226         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}.tar.gz ../lustre-client-modules-$${KVERS}_$${VER}_*.deb debs/