source: trunk/Mars/Makefile.conf.general@ 11916

Last change on this file since 11916 was 11561, checked in by tbretz, 13 years ago
Added HAVE_ZLIB
File size: 864 bytes
Line 
1#
2# ----->>> root libraries
3#
4
5ROOTLIBS := $(shell root-config --libs) -lASImage -lMinuit -lHistPainter -lThread
6ROOTGLIBS := $(shell root-config --glibs) -lASImage -lMinuit -lHistPainter -lThread
7ROOTCFLAGS := $(shell root-config --cflags)
8
9#
10# compiler flags
11#
12
13#
14# You can use this flags to further costumize compilation:
15# export MARSDEFINES="-DHAVE_DARKBACKGROUND -DHAVE_XPM"
16# export MARSFLAGS=
17# export MARSLIBS="-lX11 -lXpm -L/usr/X11R6/lib"
18#
19OSTYPE = $(shell uname -s | tr '[:upper:]' '[:lower:]')
20
21DEFINES := -DMARSVER=\"\<cvs\>\" -D__MARS__ $(MARSDEFINES) -DHAVE_ZLIB
22
23CXXFLAGS = $(ROOTCFLAGS) $(INCLUDES) $(OPTIM) $(DEBUG) $(ARCHDEF) $(DEFINES)
24CFLAGS = $(CXXFLAGS) $(MARSFLAGS)
25FFLAGS = $(CXXFLAGS)
26
27HEADERS = $(subst .cxx,.hxx,$(subst .cc,.h,$(SRCFILES)))
28OBJS = $(subst .cxx,.o, $(subst .cc,.o,$(SRCFILES))) $(CINT)Cint.o
Note: See TracBrowser for help on using the repository browser.