Line | |
---|
1 | #
|
---|
2 | # ----->>> root libraries
|
---|
3 | #
|
---|
4 |
|
---|
5 | ROOTVER = `root-config --version`
|
---|
6 | ROOTLIBS = `root-config --libs` -lMinuit -lHistPainter -lThread
|
---|
7 | ROOTGLIBS = `root-config --glibs` -lMinuit -lHistPainter -lThread
|
---|
8 | ROOTCFLAGS = `root-config --cflags`
|
---|
9 |
|
---|
10 | #
|
---|
11 | # compiler flags
|
---|
12 | #
|
---|
13 |
|
---|
14 | #
|
---|
15 | # You can use this flags to further costumize compilation:
|
---|
16 | # export MARSDEFINES="-DHAVE_DARKBACKGROUND -DHAVE_XPM"
|
---|
17 | # export MARSFLAGS=
|
---|
18 | # export MARSLIBS="-lX11 -lXpm -L/usr/X11R6/lib"
|
---|
19 | #
|
---|
20 | DEFINES = -DMARSVER=\"0.9.4\" -D__MARS__ -DROOTVER=\"$(ROOTVER)\" $(ARCHDEF) $(MARSDEFINES)
|
---|
21 |
|
---|
22 | CXXFLAGS = $(ROOTCFLAGS) $(INCLUDES) $(OPTIM) $(DEBUG) $(DEFINES)
|
---|
23 | CFLAGS = $(CXXFLAGS) $(MARSFLAGS)
|
---|
24 | FFLAGS = $(CXXFLAGS)
|
---|
25 |
|
---|
26 | HEADERS = $($(subst .cxx,.cc,SRCFILES):.cc=.h)
|
---|
27 | OBJS = $($(subst .cxx,.cc,SRCFILES):.cc=.o) $(CINT)Cint.o
|
---|
Note:
See
TracBrowser
for help on using the repository browser.