forked from sPHENIX-Collaboration/OnlMon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
53 lines (47 loc) · 1.36 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
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 -Wno-deprecated-declarations -Wall -Werror -Wextra -Wshadow -Woverloaded-virtual"
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
subsystems/Makefile
subsystems/cemc/Makefile
subsystems/cemc/calib/Makefile
subsystems/daq/Makefile
subsystems/daq/calib/Makefile
subsystems/epd/Makefile
subsystems/epd/calib/Makefile
subsystems/example/Makefile
subsystems/example/calib/Makefile
subsystems/hcal/Makefile
subsystems/hcal/calib/Makefile
subsystems/intt/Makefile
subsystems/intt/calib/Makefile
subsystems/mbd/Makefile
subsystems/mbd/calib/Makefile
subsystems/mbdll1/Makefile
subsystems/mbdll1/calib/Makefile
subsystems/mvtx/Makefile
subsystems/mvtx/calib/Makefile
subsystems/tpc/Makefile
subsystems/tpc/calib/Makefile
subsystems/tpot/Makefile
subsystems/tpot/calib/Makefile
])
AC_OUTPUT