source: trunk/MagicSoft/Simulation/Detector/Camera/config.mk.linux@ 4308

Last change on this file since 4308 was 3045, checked in by blanch, 21 years ago
*** empty log message ***
File size: 2.6 KB
Line 
1##################################################################
2#
3# config.mk
4#
5# @file config.mk
6# @title small configuration file for Makefile
7# @author J C Gonz\'alez
8# @email gonzalez@mppmu.mpg.de
9# @date Fri Mar 12 11:51:11 MET 1999
10#
11#_______________________________________________________________
12#
13# Created: Fri Mar 12 11:51:11 MET 1999
14# Author: Jose Carlos Gonzalez
15# Purpose: Makefile for the compilation of the camera program
16# Notes:
17#
18#---------------------------------------------------------------
19# $RCSfile: config.mk.linux,v $
20# $Revision: 1.4 $
21# $Author: blanch $
22# $Date: 2004-02-06 17:39:51 $
23##################################################################
24# @maintitle
25
26# @code
27
28# program
29
30PROGRAM = camera
31
32# compilers
33
34CC = g++
35CXX = g++
36F77 = f77
37
38DOCUM = ${HOME}/detector/sus/sus
39
40# includes
41
42INCLUDE = ../include-GENERAL
43INCLUDE_COR = ../include-CORSIKA
44INCLUDE_MC = ../include-MC
45INCLUDE_LONS = ../include-MLons
46INCLUDE_TRIGGER = ../include-MTrigger
47INCLUDE_FADC = ../include-MFadc
48INCLUDE_EVITA = ../../../include-Classes
49INCLUDE_EVITA_MC = ../../../include-Classes/MMcFormat
50INCLUDE_EVITA_RAW = ../../../include-Classes/MRawFormat
51INCLUDE_EVITA_BASE = ../../../include-Classes/MBase
52INCLUDE_MARS_MGEOM = ../../../include-Classes/mgeom
53INCLUDE_REFL = ../ReflectorII
54INCLUDE_STAR = ../StarResponse
55INCLUDE_ROOT = ${ROOTSYS}/include
56INCLUDE_CPLUS = /usr/include/g++
57
58# OPTIM = -O2 -Wall -fno-rtti -fno-exceptions -fPIC
59OPTIM = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align -Wconversion -Wstrict-prototypes -Wmissing-prototypes -Woverloaded-virtual
60DEBUG = -g
61
62# libraries
63
64ROOTLIBS = `root-config --libs` -lMinuit -lHistPainter -lThread
65
66# -L/CERN/root/lib -lNew -lCore -lCint -lHist \
67# -lGraf -lGraf3d -lGpad -lTree -lRint -lPostscript \
68# -lMatrix -lPhysics -lm
69
70ROOTGLIBS = `root-config --glibs` -lMinuit -lHistPainter -lThread
71
72# 0-L/CERN/root/lib -lNew -lCore -lCint -lHist \
73# -lGraf -lGraf3d -lGpad -lTree -lRint -lPostscript \
74# -lMatrix -lPhysics -lGui -lm
75
76ROOTVER = `root-config --version`
77ROOTCFLAGS= `root-config --cflags`
78
79
80GLIBS = $(ROOTLIBS) $(ROOTGLIBS)
81
82#
83# AM TEST: to compile statically uncomments lines below (you need root
84# to be compiled statically too!):
85#ROOTLIBS =
86#ROOTGLIBS =
87#GLIBS = -static -L/remote/home/pcmagic00/moralejo/root_3.02.07/lib -lRoot -lpthread -lm -ldl
88#
89
90RANLIBDIR = ../lib
91CERNDIR = /cern
92
93# system
94
95SYSTEM = linux
96
97# uncomment this for quiet compilation
98
99.SILENT:
100
101# @endcode
102##EOF
103
104
105
Note: See TracBrowser for help on using the repository browser.