]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - share/alibtool
Using AliLog (F.Carminati)
[u/mrichter/AliRoot.git] / share / alibtool
index 1057bbaefdc0a663229548d679322d7537b92778..d0ec366340e6663e84706a9ea4009ecf10c4e1c0 100755 (executable)
@@ -1,10 +1,33 @@
 #!/bin/sh
+
+# $Id$
+
 #############################################################################
 # alibtool - a shell script to help makeing modules for AliRoot Makefile
 #############################################################################
 #
 # modification history
 # $Log$
+# Revision 1.9  2004/06/18 10:30:54  rdm
+# fix typo in comment.
+#
+# Revision 1.8  2004/06/03 23:41:51  rdm
+# wrap some insanely long lines into mulitple lines.
+#
+# Revision 1.7  2003/11/10 15:02:38  rdm
+# re-direct warnings of rmkdepend about not found system include files
+# to /dev/null. Only generate dependencies on ROOT and AliRoot, not on
+# system or compiler specific files.
+#
+# Revision 1.6  2003/07/13 09:26:14  hristov
+# Transition to NewIO
+#
+# Revision 1.5  2003/05/02 15:11:52  hristov
+# Changes to avoid warnings (I.Hrivnacova)
+#
+# Revision 1.4  2002/10/14 14:57:45  hristov
+# Merging the VirtualMC branch to the main development branch (HEAD)
+#
 # Revision 1.3.6.1  2002/07/09 12:24:49  alibrary
 # Corrections for new MC
 #
@@ -19,7 +42,7 @@
 #
 #
 # SYNOPSIS
-# alirun <command> <commandparameters>
+# alibtool <command> <commandparameters>
 #
 # command must be one of the following:
 #
 #
 # DESCRIPTION
 #
-# This scipts is called with a primary command and a commandparameter. It generates output on stdout, so normally it is called with a redirection like
+# This scipts is called with a primary command and a command parameter.
+# It generates output on stdout, so normally it is called with a redirection,
+# like:
 #
-#   alibtool mkmoudle STEER > STEER/module.mk
+#   alibtool mkmodule STEER > STEER/module.mk
 #
-# The command is one of the following
+# The command is one of the following:
 #
 # depend
-#        Makes the dependencies for the file specified as second argument (c and cxx files)
+#     Makes the dependencies for the file specified as second argument
+#     (for c and cxx files)
 #
 # dependF
-#        Makes the dependencies for the file specified as second argument (fortran files)
-#
-# mkmoudle
-#        Creates the module.mk for the the given directory specified as the second argument.
-#
-# MKMOUDLE
-#
-# When alibtool is called with the mkmodule command it searches the directory given as the second argument for files called *.pkg. If a file (possibly several) is found, it will create a file called module.mk based on these files. For example if running alibtool mkmodule STEER, it will search the STEER directory and create STEER/module.mk based on all .pkg files is STEER directory. If a file called libSTEER.pkg is found, then module.mk will have a section devoted to makeing library libSTEER.so with alle the sourcefiles specified in libSTEER.pkg. If a file called binSTEER.pkg is found the module.mk file will create an executable called STEER. Several *.pkg files can be placed in the same directory. The module.mk files is created on background of build/header.tpl and build/module.mk by variable substituion of variables @MODULE@ @PACKAGE@ and @TYPE@.
+#     Makes the dependencies for the file specified as second argument
+#     (for fortran files)
+#
+# mkmodule
+#     Creates the module.mk for the the given directory specified as
+#     the second argument
+#
+# MKMODULE
+#
+# When alibtool is called with the mkmodule command it searches the directory
+# given as the second argument for files called *.pkg. If a file (possibly
+# several) is found, it will create a file called module.mk based on these
+# files. For example if running alibtool mkmodule STEER, it will search the
+# STEER directory and create STEER/module.mk based on all .pkg files is
+# STEER directory. If a file called libSTEER.pkg is found, then module.mk
+# will have a section devoted to makeing library libSTEER.so with alle the
+# sourcefiles specified in libSTEER.pkg. If a file called binSTEER.pkg is
+# found the module.mk file will create an executable called STEER. Several
+# *.pkg files can be placed in the same directory. The module.mk files is
+# created on background of build/header.tpl and build/module.mk by variable
+# substituion of variables @MODULE@ @PACKAGE@ and @TYPE@.
 #
 # PKG FILES
 #
 #
-# The syntax for the pkg file is very simple. You specify the sources, headers and possibly extra include or link options. The *.pkg files is just inserted "as is" in the module.mk file, so normal Makefile syntax can be used. These variables can be specified: SRCS, FSRCS, CSRCS, HDRS, CHDRS, DHDR, EINCLUDE, ELIBS, ELIBSDIR, PACKFFLAGS, PACKCFLAGS, PACKCXXFLAGS. The first five is just the c++ sources, fortran sources, c sources, c++ headers and c headers. DHDR is the dictionary header and is the LinkDef file. EINCLUDE, ELIBS and ELIBSDIR is extra includedirs, libraries and library search paths. If for example a binary is to be linked against the variable ELIBSDIR would be set to lib/tgt_$ALICE_TARGET. Notice that -L and -l is not needed. If the PACKFFLAGS, PACKCFLAGS or PACKCXXFLAGS is not set it will be set to the default options (Set in config/Makefile.$ALICE_TARGET. For example on Linux GEANT321 has to be compiled without -O options, so a line like PACKFFLAGS := $(filter-out -O%,$(FFLAGS)) is needed.
+# The syntax for the pkg file is very simple. You specify the sources, headers
+# and possibly extra include or link options. The *.pkg files is just
+# inserted "as is" in the module.mk file, so normal Makefile syntax can
+# be used. These variables can be specified: SRCS, FSRCS, CSRCS, HDRS, CHDRS,
+# DHDR, EINCLUDE, ELIBS, ELIBSDIR, PACKFFLAGS, PACKCFLAGS, PACKCXXFLAGS.
+# The first five is just the C++ sources, fortran sources, C sources,
+# C++ headers and C headers. DHDR is the dictionary header and is the
+# LinkDef file. EINCLUDE, ELIBS and ELIBSDIR is extra includedirs,
+# libraries and library search paths. If for example a binary is to be
+# linked against the variable ELIBSDIR would be set to lib/tgt_$ALICE_TARGET.
+# Notice that -L and -l is not needed. If the PACKFFLAGS, PACKCFLAGS or
+# PACKCXXFLAGS is not set it will be set to the default options (set in
+# config/Makefile.$ALICE_TARGET. For example on Linux GEANT321 has to be
+# compiled without -O options, so a line like
+# PACKFFLAGS := $(filter-out -O%,$(FFLAGS))
+# is needed.
 #
 #
 # DEPEND
 # 
-# If alibtool is called with the depend command it will generate a dependecy file for the sourcefile given as second argument. This only goes for c++ and c files. If dependencies for fortran-fiels is needed, call alibtool with command dependF. The dependencies is made with rmkdepend.
+# If alibtool is called with the depend command it will generate a dependecy
+# file for the sourcefile given as second argument. This only goes for C++
+# and C files. If dependencies for fortran-fiels is needed, call alibtool
+# with command dependF. The dependencies are made with rmkdepend.
 #
 #
 # DEPENDF
 
 MkDepend()
 {
-rmkdepend -f- -w 3000 -- -I$ROOTSYS/cint/include $* | sed -e "s@^\(.*\)\/\(.*\)\.o:@\1\/tgt_${ALICE_TARGET}\/\2.d \1\/tgt_${ALICE_TARGET}/\\2.o:@" -e 's@^#.*$@@' -e '/^$/d'
+echo "#"
+rmkdepend -f- -Y -w 3000 -- $* 2>/dev/null | sed -e "s@^\(.*\)\/\(.*\)\.o:@\1\/tgt_${ALICE_TARGET}\/\2.d \1\/tgt_${ALICE_TARGET}/\\2.o:@" -e 's@^#.*$@@' -e '/^$/d'
 }
 MkDependF()
 {
-rmkdepend -f- -Y -w 3000 -- $* | sed -e "s@^\(.*\)\/\(.*\)\.o:@\1\/tgt_${ALICE_TARGET}\/\2.d \1\/tgt_${ALICE_TARGET}/\\2.o:@" -e 's@^#.*$@@' -e '/^$/d'
+echo "#"
+rmkdepend -f- -Y -w 3000 -- $* 2>/dev/null | sed -e "s@^\(.*\)\/\(.*\)\.o:@\1\/tgt_${ALICE_TARGET}\/\2.d \1\/tgt_${ALICE_TARGET}/\\2.o:@" -e 's@^#.*$@@' -e '/^$/d'
 }
 
 MkModule()
@@ -129,21 +188,3 @@ mkmodule)
     MkModule $2
     ;;
 esac;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-