-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathconfigure.ac
62 lines (56 loc) · 1.52 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
AC_INIT(onlmon,[2.00])
AC_CONFIG_SRCDIR([configure.ac])
AM_INIT_AUTOMAKE
AC_PROG_CXX(CC g++)
LT_INIT([disable-static])
INSTALL="/usr/bin/install -D -p"
dnl no point in suppressing warnings people should
dnl at least see them, so here we go for g++: -Wall
if test $ac_cv_cxx_compiler_gnu = yes; then
dnl CXXFLAGS="$CXXFLAGS -Wall"
CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wshadow -Werror"
fi
ROOTLIBS="`$ROOTSYS/bin/root-config --glibs`"
AC_SUBST(ROOTLIBS)
dnl PLEASE USE ALPHABETICAL ORDER FOR THE MAKEFILE LIST
dnl otherwise noone will be able to find your system
AC_CONFIG_FILES([
Makefile
onlmonclient/Makefile
onlmondatabase/Makefile
poms/Makefile
onlmonserver/Makefile
onlmonutils/Makefile
scripts/Makefile
macros/Makefile
subsystems/Makefile
subsystems/bbc/Makefile
subsystems/bbc/calib/Makefile
subsystems/ll1/Makefile
subsystems/ll1/calib/Makefile
subsystems/cemc/Makefile
subsystems/cemc/calib/Makefile
subsystems/daq/Makefile
subsystems/daq/calib/Makefile
subsystems/sepd/Makefile
subsystems/sepd/calib/Makefile
subsystems/example/Makefile
subsystems/example/calib/Makefile
subsystems/hcal/Makefile
subsystems/hcal/calib/Makefile
subsystems/intt/Makefile
subsystems/localpol/Makefile
subsystems/localpol/calib/Makefile
subsystems/mvtx/Makefile
subsystems/mvtx/calib/Makefile
subsystems/pktsize/Makefile
subsystems/spin/Makefile
subsystems/spin/calib/Makefile
subsystems/tpc/Makefile
subsystems/tpc/calib/Makefile
subsystems/tpot/Makefile
subsystems/tpot/calib/Makefile
subsystems/zdc/Makefile
subsystems/zdc/calib/Makefile
])
AC_OUTPUT