Revision 92b83bb3ece1639056588b9a7654e1d42caf880b authored by Rene Brun on 12 March 2004, 15:20:32 UTC, committed by Rene Brun on 12 March 2004, 15:20:32 UTC
- New option PCOL in TGraph2D. Draws a marker at each vertex. The color of
  each marker is defined according to its Z position.


git-svn-id: http://root.cern.ch/svn/root/trunk@8382 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 15c75d1
Raw File
Makefile.mklinux
# -*- mode: makefile -*-
#
# Makefile of ROOT for MkLinux with glibc

PLATFORM      = linux

DEBUGFLAGS    = -g
OPTFLAGS      = -O2
ifeq (debug,$(findstring debug,$(ROOTBUILD)))
OPT           = $(DEBUGFLAGS)
NOOPT         =
else
OPT           = $(OPTFLAGS)
NOOPT         =
endif

# Compiler:
CXX           = g++
CC            = gcc
CXXFLAGS      = -Wall -fsigned-char -fPIC \
                -I/usr/X11/include/  -I/usr/include/g++/ $(EXTRA_CXXFLAGS)
CFLAGS        = -Wall -fPIC -fsigned-char \
                -I/usr/X11/include/  -I/usr/include/g++/ $(EXTRA_CFLAGS)
CINTCXXFLAGS  = -Wall -fPIC -fsigned-char -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
                -DG__OSFDLL -DG__ROOT -DG__REDIRECTIO \
                -I/usr/include/g++/ $(EXTRA_CXXFLAGS)
CINTCFLAGS    = -Wall -fPIC -fsigned-char -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
                -DG__OSFDLL -DG__ROOT -DG__REDIRECTIO $(EXTRA_CFLAGS)
COMPILER      = gnu

# Linker:
LD            = g++
LDFLAGS       = $(OPT) $(EXTRA_LDFLAGS)
SOFLAGS       = -shared -Wl,-soname,
SOEXT         = so

# System libraries:
SYSLIBS       = -lg++ -lm -ldl
XLIBS         = $(XPMLIBDIR) $(XPMLIB) $(X11LIBDIR) -lX11 -lSM -lICE -lg++
CILIBS        = -lm -ltermcap -lbsd -ldl -lg++

# Fortran:

back to top