################################################################## # # config.mk # # @file config.mk # @title small configuration file for Makefile # @author J C Gonz\'alez # @email gonzalez@mppmu.mpg.de # @date Fri Mar 12 11:51:11 MET 1999 # #_______________________________________________________________ # # Created: Fri Mar 12 11:51:11 MET 1999 # Author: Jose Carlos Gonzalez # Purpose: Makefile for the compilation of the camera program # Notes: # #--------------------------------------------------------------- # $RCSfile: config.mk.linux,v $ # $Revision: 1.4 $ # $Author: moralejo $ # $Date: 2004-09-17 13:51:01 $ ################################################################## # @maintitle # @code # compilers CC = g++ CXX = g++ F77 = f77 DOCUM = ${HOME}/detector/sus/sus # includes INCLUDE = ../include-GENERAL INCLUDE_COR = ../include-CORSIKA INCLUDE_MC = ../include-MC INCLUDE_TRIGGER = ../include-MTrigger INCLUDE_FADC = ../include-MFadc INCLUDE_ROOT = ${ROOTSYS}/include INCLUDE_CPLUS = /usr/include/g++ INCLUDE_MARS_MBASE = ../../../Mars/mbase INCLUDE_MARS_MGEOM = ../../../Mars/mgeom INCLUDE_MARS_MGUI = ../../../Mars/mgui INCLUDE_MARS_MC = ../../../Mars/mmc INCLUDE_MARS_MRAW = ../../../Mars/mraw # all the stuff for ROOT ROOTLIBS = `root-config --libs` ROOTGLIBS = `root-config --glibs` GLIBS = $(ROOTLIBS) $(ROOTGLIBS) -L/usr/X11R6/lib \ -lXpm -lX11 -lm -ldl -rdynamic # compiler options OPTIM = -O2 -Wall -fPIC DEBUG = -g # libraries RANLIBDIR = ../lib # system SYSTEM = linux # uncomment this for quiet compilation .SILENT: # @endcode ##EOF