]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/make.dict
added fluctuations in multiplicity in fixed range
[u/mrichter/AliRoot.git] / HLT / make.dict
CommitLineData
b521659f 1# Makefile template for ROOT dictionary generation
2#
85e53837 3# This is a common include file which handles generation of the ROOT dictionary
4# files. It creates:
5# - the dict.cxx (variable DICTCPP)
6# - the dict.h (variable DICTCPP:.cxx=.h)
7# - optional: the linkdef.h (variable MODULE postfixed by -LinkDef.h)
8#
9# If the MODULE_DHDR variable is set in the package definition lib<module>.pkg
10# to a custom LinkDef file, the automatic generation of the LinkDef header is
11# disabled. Instead, the specified one is used.
12#
b521659f 13# usage:
14# 1. set variable CLASS_HDRS to the class header files
15# 2. set DICTCPP variable to dictionary c++ file name
4a6b4894 16# e.g. <module>-DICT.cxx (<module> replaced by your module name)
b521659f 17# 3. add the source file name to the list of generated sources
18# nodist_lib<module>_la_SOURCES = $(DICTCPP)
4a6b4894 19# 4. add additional include files which are necessary for the compilation
20# of the dictionary files and which are not part of the CLASS_HDRS to
21# the DICTINCLUDE variable
22# 5. include this file from your Makefile(.am)
b521659f 23# e.g. include ../make.dict
24#
25# Author: Matthias.Richter@ift.uib.no
26#
85e53837 27DICTAUTODEF = $(MODULE)-LinkDef.h
28DICTDEF = $(shell if test "x$(MODULE_DHDR)" = "x"; then echo $(DICTAUTODEF); else echo $(MODULE_DHDR); fi)
29DICTFILES = $(DICTCPP) $(DICTCPP:.cxx=.h) $(DICTAUTODEF)
94c65cc8 30DICTHEADERS = $(CLASS_HDRS)
b521659f 31
32CLEANFILES += $(DICTFILES)
33
85e53837 34EXTRA_DIST += $(MODULE_DHDR)
35
4386ebdb 36# the rootcint buffer for macros is limited to 1024 characters
37# we have to filter out some of the defines
e31965fd 38DEFFILTER = -DPACKAGE* -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1
b521659f 39
40$(DICTCPP:.cxx=.h): $(DICTCPP)
41 if test $@ ; then : ; else rm -f $< ; $(MAKE) $(MAKEFLAGS) $< ; fi
42
43$(DICTCPP): $(DICTHEADERS:%=$(srcdir)/%) $(DICTDEF)
4386ebdb 44 if [ -x $(ROOTCINT) ]; then $(ROOTCINT) -f $@ -c $(CPPFLAGS) $(AM_CPPFLAGS) \
45 `for i in $(DEFS);do case $$i in $(foreach def, $(DEFFILTER), $(def) |) -DVERSION*);; *) echo -n " $$i";; esac; done` \
46 $(foreach i, $(DICTINCLUDE), $(i)) \
47 $^ ; fi
85e53837 48
49$(DICTAUTODEF): Makefile.am $(PKGDEF)
b521659f 50 @echo '//automatically generated ROOT DICT definition' > $@
51 @echo '//!!! DO NOT EDIT THIS FILE !!!' >> $@
fa760045 52 @echo '//add further class definitions to the CLASS_HDRS variable in Makefile.am' >> $@
b521659f 53 @echo '#ifdef __CINT__' >> $@
54 @echo '#pragma link off all globals;' >> $@
55 @echo '#pragma link off all classes;' >> $@
56 @echo '#pragma link off all functions;' >> $@
9f733652 57 @$(foreach i, $(DICTHEADERS:.h=), \
a6b76a91 58 echo "#pragma link C++ class "`echo $(i)| sed -e 's|.*/||'`"+;" >> $@ ;)
b521659f 59 @echo '#endif' >> $@