Whamcloud - gitweb
LU-3963 libcfs: convert obdecho,obdclass code to atomics
[fs/lustre-release.git] / autoMakefile.am
1 SUBDIRS := @LDISKFS_SUBDIR@ . @LIBSYSIO_SUBDIR@ @SNMP_SUBDIR@ @LUSTREIOKIT_SUBDIR@ @LIBCFS_SUBDIR@ lnet lustre
2 DIST_SUBDIRS := ldiskfs @SNMP_DIST_SUBDIR@ libsysio lustre-iokit @LIBCFS_SUBDIR@ lnet lustre config contrib
3
4 @TESTS_TRUE@BUILD_TESTS = true
5 @TESTS_FALSE@BUILD_TESTS = false
6 @SERVER_TRUE@BUILD_SERVER = true
7 @SERVER_FALSE@BUILD_SERVER = false
8 @CLIENT_TRUE@BUILD_CLIENT = true
9 @CLIENT_FALSE@BUILD_CLIENT = false
10 @LDISKFS_ENABLED_TRUE@BUILD_OSD_LDISKFS = true
11 @LDISKFS_ENABLED_FALSE@BUILD_OSD_LDISKFS = false
12 @ZFS_ENABLED_TRUE@BUILD_OSD_ZFS = true
13 @ZFS_ENABLED_FALSE@BUILD_OSD_ZFS = false
14 @BUILD_LUSTREIOKIT_TRUE@BUILD_LUSTREIOKIT = true
15 @BUILD_LUSTREIOKIT_FALSE@BUILD_LUSTREIOKIT = false
16
17 AUTOMAKE_OPTIONS = foreign
18
19 FIND_TAG_FILES_CMD = find $(top_srcdir) \
20                      -path $(top_srcdir)/ldiskfs/linux-stage \
21                      -prune -false -o -type f -name '*.[hc]'
22
23 # these empty rules are needed so that automake doesn't add its own
24 # recursive rules
25 etags-recursive:
26
27 ctags-recursive:
28
29 tags-recursive:
30
31 TAGS: etags
32
33 tags: ctags etags
34
35 etags:
36         $(RM) $(top_srcdir)/TAGS
37         ETAGSF=`etags --version | grep -iq exuberant && \
38                 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
39         $(FIND_TAG_FILES_CMD) | xargs etags $$ETAGSF -a
40
41 ctags:
42         $(RM) $(top_srcdir)/tags
43         CTAGSF=`ctags --version | grep -iq exuberant && \
44                 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
45         $(FIND_TAG_FILES_CMD) | xargs ctags $$CTAGSF -a
46
47 cscope-recursive:
48
49 cscope:
50         $(RM) $(top_srcdir)/cscope*.out $(top_srcdir)/cscope.files
51         $(FIND_TAG_FILES_CMD) > cscope.files
52         cscope -bRq
53
54 mkid:
55         $(FIND_TAG_FILES_CMD) | xargs mkid
56
57
58 doxygen:  doxygen-api doxygen-ref
59
60 doxygen-%: build/doxyfile.%
61         doxygen $<
62
63 if MODULES
64 sources: all-sources
65
66 all-sources: module-symvers
67         $(MAKE) sources -C lustre || exit $$?
68
69 if LINUX
70 all-am: modules
71
72 modules: $(DEP) all-sources
73         $(MAKE) CC="$(CC)" $(CROSS_VARS) -C $(LINUX_OBJ)             \
74         -f $(PWD)/build/Makefile LUSTRE_LINUX_CONFIG=$(LINUX_CONFIG) \
75         LINUXINCLUDE='-I$$(srctree)/arch/$$(SRCARCH)/include -I$$(srctree)/arch/$$(SRCARCH)/include/generated -Iinclude $$(if $$(KBUILD_SRC),-Iinclude2 -I$$(srctree)/include) -I$$(srctree)/arch/$$(SRCARCH)/include/uapi -Iarch/$$(SRCARCH)/include/generated/uapi -I$$(srctree)/include/uapi -Iinclude/generated/uapi -include $(CONFIG_INCLUDE)' \
76         $(MODULE_TARGET)=$(PWD) -o tmp_include_depends -o scripts -o \
77         include/config/MARKER $@
78 endif # LINUX
79
80 endif # MODULES
81
82 dist-hook:
83         find $(distdir) -name .deps -o \
84                         -name CVS -o \
85                         -name .svn -o \
86                         -name .git -o \
87                         -name .#* | xargs rm -rf
88         $(MAKE) $(AM_MAKEFLAGS) \
89           top_distdir="$(top_distdir)" distdir="$(distdir)" \
90           module-dist-hook
91
92 EXTRA_DIST = @PACKAGE_TARNAME@.spec     \
93         build/Makefile                  \
94         build/Rules.in                  \
95         build/gen_filelist.sh
96
97 rpms: @PACKAGE_TARNAME@.spec dist Makefile
98         @CONFIGURE_ARGS=""; \
99         for arg in $(ac_configure_args); do \
100                 case $$arg in \
101                         --with-release=* ) ;; \
102                         --with-kmp-moddir=* ) ;; \
103                         --enable-tests | --disable-tests ) ;; \
104                         --with-linux=* | --with-linux-obj=* ) ;; \
105                         * ) CONFIGURE_ARGS="$$CONFIGURE_ARGS '$$arg'" ;; \
106                 esac; \
107         done; \
108         RPMARGS="--define \"configure_args $$CONFIGURE_ARGS\""; \
109         if [ -n "@LINUX@" ]; then  \
110                 RPMARGS="$$RPMARGS --define \"kdir @LINUX@\""; \
111                 if [ -n "@LINUX_OBJ@" -a "@LINUX_OBJ@" != "@LINUX@" ]; then \
112                         RPMARGS="$$RPMARGS --define \"kobjdir @LINUX_OBJ@\""; \
113                 fi; \
114         fi; \
115         if [ -n "@KMP_MODDIR@" ]; then \
116                 RPMARGS="$$RPMARGS --define \"kmoddir @KMP_MODDIR@\""; \
117         fi; \
118         if [ -n "@CROSS_PATH@" ]; then \
119                 if [[ "X$(BUILD_SERVER)" = Xtrue ]]; then \
120                         echo -e "\n" \
121                         "*** Don't support cross compilation for the Intel(R) Xeon Phi(TM) card.\n"; \
122                         exit 1; \
123                 fi; \
124                 CROSS_SUFFIX="-mic"; \
125                 RPMARGS="$$RPMARGS --define \"post_script build/gen_filelist.sh\""; \
126                 RPMARGS="$$RPMARGS --define \"cross_path @CROSS_PATH@\""; \
127                 RPMARGS="$$RPMARGS --define \"rootdir %{cross_path}\""; \
128                 RPMARGS="$$RPMARGS --define \"_prefix %{cross_path}/usr\""; \
129                 RPMARGS="$$RPMARGS --define \"_mandir %{_prefix}/share/man\""; \
130                 RPMARGS="$$RPMARGS --define \"_sysconfdir %{cross_path}/etc\""; \
131                 RPMARGS="$$RPMARGS --define \"make_args @CROSS_VARS@\""; \
132                 if [ "@CC_TARGET_ARCH@" = "k1om-mpss-linux" ]; then \
133                         RPMARGS="$$RPMARGS --define \"cross_requires mpss-bootimage\""; \
134                 else \
135                         RPMARGS="$$RPMARGS --define \"cross_requires intel-mic-gpl\""; \
136                 fi; \
137         fi; \
138         if [[ "X$(BUILD_TESTS)" = Xfalse ]]; then \
139                 RPMARGS="$$RPMARGS --without lustre_tests"; \
140         fi; \
141         if [[ "X$(BUILD_SERVER)" = Xfalse ]]; then \
142                 RPMARGS="$$RPMARGS --without servers"; \
143                 if [ -n "$$CROSS_SUFFIX" ]; then \
144                         RPMARGS="$$RPMARGS --define \"lustre_name lustre-client$$CROSS_SUFFIX\""; \
145                 fi; \
146         fi; \
147         if [[ "X$(BUILD_OSD_LDISKFS)" = Xtrue ]]; then \
148                 RPMARGS="$$RPMARGS --with ldiskfs"; \
149         fi; \
150         if [[ "X$(BUILD_OSD_ZFS)" = Xtrue ]]; then \
151                 RPMARGS="$$RPMARGS --with zfs"; \
152         fi; \
153         if [[ "X$(BUILD_LUSTREIOKIT)" = Xfalse ]]; then \
154                 RPMARGS="$$RPMARGS --without lustre_iokit"; \
155         fi; \
156         echo "Building Lustre RPM with $$RPMARGS"; \
157         eval rpmbuild $$RPMARGS -ta $(distdir).tar.gz
158
159 srpm: @PACKAGE_TARNAME@.spec dist Makefile
160         if [[ "X$(BUILD_TESTS)" = Xfalse ]]; then \
161                 RPMARGS="--without lustre_tests"; \
162         fi; \
163         if [[ "X$(BUILD_LUSTREIOKIT)" = Xfalse ]]; then \
164                 RPMARGS="$$RPMARGS --without lustre_iokit"; \
165         fi; \
166         eval rpmbuild $$RPMARGS -ts $(distdir).tar.gz
167
168 # In the debs target, first make sure what's in the changelog reflects
169 # the software version.  Here's how we could dig the version out of the
170 # autoconf version file directly:
171 # lversion=$$(sed -ne 's/m4_define(\[LUSTRE_[A-Z][A-Z]*\],\[\([0-9][0-9]*\)\])$$/\1/p'
172 #       lustre/autoconf/lustre-version.ac | tr '\n' '.' | sed -e 's/.$//');
173 #
174 # However, one cannot really run "make debs" without having done a
175 # configure first, so we could use the easier method of digging the
176 # version out of the config.h file.
177 debs:
178         lversion=$$(sed -ne 's/^#define VERSION "\(.*\)"$$/\1/p' config.h); \
179         cversion=$$(sed -ne '1s/^lustre (\(.*\)-[0-9][0-9]*).*$$/\1/p' debian/changelog); \
180         if [ "$$lversion" != "$$cversion" ]; then \
181                 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; \
182         fi; \
183         rm -rf debs
184         dpkg-buildpackage -I.git -I\*.out[0-9]\* -I\*.swp || { \
185                 rc=$${PIPESTATUS[0]}; \
186                 [ $${rc} -gt 1 ] && exit $${rc}; \
187                 exit 0; \
188         }
189         export KPKG_DEST_DIR="$$(pwd)/.." && \
190         version=$$(sed -ne '1s/^lustre (\(.*\)).*$$/\1/p' debian/changelog) && \
191         rm -rf debian/tmp/modules-deb && \
192         mkdir debian/tmp/modules-deb && \
193         pushd debian/tmp/modules-deb && \
194         dpkg -x ../../../../lustre-source_$${version}_all.deb $$(pwd) && \
195         mkdir usr_src/ && \
196         tar -C usr_src/ -xjf usr/src/lustre.tar.bz2 && \
197         chmod 755 usr_src/modules/lustre/debian/rules && \
198         mkdir -p usr_share_modass && \
199         ln -s /usr/share/modass/include/ usr_share_modass/ && \
200         ln -s /usr/share/modass/packages/ usr_share_modass/ && \
201         echo "lustre" > usr_share_modass/compliant.list && \
202         export MA_DIR=$$(pwd)/usr_share_modass && \
203         KVERS=$${KVERS:-$(LINUXRELEASE)}; \
204         m-a build $${KVERS:+-l $$KVERS} -i -u $$(pwd) lustre && \
205         popd && \
206         VER=$$(sed -ne '1s/^lustre (\(.*-[0-9][0-9]*\)).*$$/\1/p' debian/changelog); \
207         mkdir -p debs && \
208         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/
209
210 EXTRA_DIST += config.h.in
211
212 if USES_DPKG
213 EXTRA_DIST += debian/*
214 endif
215
216 module-symvers-zfs:
217 if ZFS_ENABLED
218         @if [ -f @SPL_OBJ@/@SPL_SYMBOLS@ ]; then \
219                 cat @SPL_OBJ@/@SPL_SYMBOLS@ >>@SYMVERFILE@; \
220         elif [ -f @SPL_OBJ@/module/@SPL_SYMBOLS@ ]; then \
221                 cat @SPL_OBJ@/module/@SPL_SYMBOLS@ >>@SYMVERFILE@; \
222         else \
223                 echo -e "\n" \
224                 "*** Missing spl symbols. Ensure you have built spl:\n" \
225                 "*** - @SPL_OBJ@/@SYMVERFILE@\n"; \
226                 exit 1; \
227         fi
228         @if [ -f @ZFS_OBJ@/@ZFS_SYMBOLS@ ]; then \
229                 cat @ZFS_OBJ@/@ZFS_SYMBOLS@ >>@SYMVERFILE@; \
230         elif [ -f @ZFS_OBJ@/module/@ZFS_SYMBOLS@ ]; then \
231                 cat @ZFS_OBJ@/module/@ZFS_SYMBOLS@ >>@SYMVERFILE@; \
232         else \
233                 echo -e "\n" \
234                 "*** Missing zfs symbols. Ensure you have built zfs:\n" \
235                 "*** - @ZFS_OBJ@/@SYMVERFILE@\n"; \
236                 exit 1; \
237         fi
238 endif # ZFS_ENABLED
239
240 module-symvers: module-symvers-zfs
241
242 CSTK=/tmp/checkstack
243 CSTKO=/tmp/checkstack.orig
244
245 checkstack:
246         [ -f ${CSTK} -a ! -s ${CSTKO} ] && mv -f ${CSTK} ${CSTKO} || true
247         { for MOD in $$(find . -name "*.ko"); do                             \
248                 objdump -d $$MOD | perl contrib/scripts/checkstack.pl;       \
249           done } | grep -v " bug " | sort -nr | uniq > ${CSTK}
250         [ -f ${CSTKO} ] && ! diff -u ${CSTKO} ${CSTK} || head -30 ${CSTK}
251
252 checkstack-update:
253         [ -f ${CSTK} ] && mv -f ${CSTK} ${CSTKO}
254
255 checkstack-clean:
256         rm -f ${CSTK} ${CSTKO}
257
258 module-dist-hook:
259         if [ -d .git ]; then \
260                 perl lustre/scripts/version_tag.pl --make_META > $(distdir)/META; \
261         elif [ -f META ]; then \
262                 cp META $(distdir)/META; \
263         else \
264                 echo -e "I have no idea how to create a META file in $(distdir).\nPlease file a bug at http://bugzilla.lustre.org/"; \
265                 exit 1; \
266         fi