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

Last change on this file since 5165 was 5103, checked in by moralejo, 20 years ago
Changes to adapt headers to c++ style.
File size: 2.2 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.7 $
21# $Author: moralejo $
22# $Date: 2004-09-17 14:48:21 $
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_STAR = ../StarResponse
49INCLUDE_ROOT = ${ROOTSYS}/include
50INCLUDE_CPLUS = /usr/include/g++
51
52INCLUDE_MARS_MBASE = ../../../Mars/mbase
53INCLUDE_MARS_MGEOM = ../../../Mars/mgeom
54INCLUDE_MARS_MGUI = ../../../Mars/mgui
55INCLUDE_MARS_MC = ../../../Mars/mmc
56INCLUDE_MARS_MRAW = ../../../Mars/mraw
57
58OPTIM = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align -Wconversion -Wstrict-prototypes -Wmissing-prototypes -Woverloaded-virtual
59DEBUG = -g
60
61# libraries
62
63ROOTLIBS = `root-config --libs` -lMinuit -lHistPainter -lThread
64
65ROOTGLIBS = `root-config --glibs` -lMinuit -lHistPainter -lThread
66
67ROOTVER = `root-config --version`
68ROOTCFLAGS= `root-config --cflags`
69
70GLIBS = $(ROOTLIBS) $(ROOTGLIBS)
71
72RANLIBDIR = ../lib
73
74#
75# AM TEST: to compile statically uncomments lines below (you need root
76# to be compiled statically too!):
77# Be aware that you have to put -L/your_root_path/lib
78#ROOTLIBS =
79#ROOTGLIBS =
80#GLIBS = -static -L/cern/root/root/lib -lRoot -lpthread -lm -ldl
81#
82
83# system
84
85SYSTEM = linux
86
87# uncomment this for quiet compilation
88
89.SILENT:
90
91# @endcode
92##EOF
93
94
95
Note: See TracBrowser for help on using the repository browser.