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-gnu,v $
|
---|
20 | # $Revision: 1.7 $
|
---|
21 | # $Author: blanch $
|
---|
22 | # $Date: 2002-09-04 10:04:45 $
|
---|
23 | ##################################################################
|
---|
24 | # @maintitle
|
---|
25 |
|
---|
26 | # @code
|
---|
27 |
|
---|
28 | # program
|
---|
29 |
|
---|
30 | PROGRAM = camera
|
---|
31 |
|
---|
32 | # compilers
|
---|
33 |
|
---|
34 | CC = g++
|
---|
35 | CXX = g++
|
---|
36 | F77 = f77
|
---|
37 |
|
---|
38 | DOCUM = ${HOME}/detector/sus/sus
|
---|
39 |
|
---|
40 | # includes
|
---|
41 |
|
---|
42 | INCLUDE = ../include-GENERAL
|
---|
43 | INCLUDE_COR = ../include-CORSIKA
|
---|
44 | INCLUDE_MC = ../include-MC
|
---|
45 | INCLUDE_LONS = ../include-MLons
|
---|
46 | INCLUDE_TRIGGER = ../include-MTrigger
|
---|
47 | INCLUDE_FADC = ../include-MFadc
|
---|
48 | INCLUDE_EVITA = ../../../include-Classes
|
---|
49 | INCLUDE_EVITA_MC = ../../../include-Classes/MMcFormat
|
---|
50 | INCLUDE_EVITA_RAW = ../../../include-Classes/MRawFormat
|
---|
51 | INCLUDE_EVITA_BASE = ../../../include-Classes/MBase
|
---|
52 | INCLUDE_MARS_MGEOM = ../../../include-Classes/mgeom
|
---|
53 | INCLUDE_REFL = ../ReflectorII
|
---|
54 | INCLUDE_STAR = ../StarResponse
|
---|
55 | INCLUDE_ROOT = ${ROOTSYS}/include
|
---|
56 | INCLUDE_CPLUS = /usr/include/g++
|
---|
57 |
|
---|
58 | OPTIM = -O2 -Wall -fno-rtti -fno-exceptions -fPIC
|
---|
59 | DEBUG = -g
|
---|
60 |
|
---|
61 | # libraries
|
---|
62 |
|
---|
63 | ROOTLIBS = `root-config --libs`
|
---|
64 |
|
---|
65 | # -L/CERN/root/lib -lNew -lCore -lCint -lHist \
|
---|
66 | # -lGraf -lGraf3d -lGpad -lTree -lRint -lPostscript \
|
---|
67 | # -lMatrix -lPhysics -lm
|
---|
68 |
|
---|
69 | ROOTGLIBS = `root-config --glibs`
|
---|
70 |
|
---|
71 | # -L/CERN/root/lib -lNew -lCore -lCint -lHist \
|
---|
72 | # -lGraf -lGraf3d -lGpad -lTree -lRint -lPostscript \
|
---|
73 | # -lMatrix -lPhysics -lGui -lm
|
---|
74 |
|
---|
75 | GLIBS = $(ROOTLIBS) $(ROOTGLIBS)
|
---|
76 |
|
---|
77 |
|
---|
78 |
|
---|
79 | RANLIBDIR = ../lib
|
---|
80 | CERNDIR = /cern
|
---|
81 |
|
---|
82 | # system
|
---|
83 |
|
---|
84 | SYSTEM = linux
|
---|
85 |
|
---|
86 | # uncomment this for quiet compilation
|
---|
87 |
|
---|
88 | .SILENT:
|
---|
89 |
|
---|
90 | # @endcode
|
---|
91 | ##EOF
|
---|
92 |
|
---|