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.1 $
|
---|
21 | # $Author: petry $
|
---|
22 | # $Date: 2000-01-25 15:21:43 $
|
---|
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_TRIGGER = ../include-MTrigger
|
---|
46 | INCLUDE_EVITA = ../../../include-Classes
|
---|
47 | INCLUDE_REFL = ../Reflector
|
---|
48 | INCLUDE_ROOT = ${ROOTSYS}/include
|
---|
49 | INCLUDE_CPLUS = /usr/include/g++
|
---|
50 |
|
---|
51 | # all the stuff for ROOT
|
---|
52 |
|
---|
53 | # for ROOT 2.23 or later
|
---|
54 |
|
---|
55 | ROOTLIBS = -L$(ROOTSYS)/lib -lNew -lCint -lCore \
|
---|
56 | -lGraf -lGraf3d -lHist -lHtml -lMatrix -lMinuit \
|
---|
57 | -lPostscript -lProof -lTree
|
---|
58 | ROOTGLIBS = -lGpad -lGui -lGX11 -lX3d
|
---|
59 |
|
---|
60 | # for ROOT 2.22 or earlier
|
---|
61 | #
|
---|
62 | #ROOTLIBS = -L$(ROOTSYS)/lib -lNew -lBase -lCint -lClib \
|
---|
63 | # -lCont -lFunc -lGraf -lGraf3d -lHist -lHtml \
|
---|
64 | # -lMatrix -lMeta -lMinuit -lNet -lPostscript \
|
---|
65 | # -lProof -lTree -lUnix -lZip -lRint
|
---|
66 | #
|
---|
67 | #ROOTGLIBS = -lGpad -lGui -lGX11 -lX3d -lX11
|
---|
68 | #
|
---|
69 |
|
---|
70 | GLIBS = $(ROOTLIBS) $(ROOTGLIBS) -L/usr/X11R6/lib \
|
---|
71 | -lXpm -lX11 -lm -ldl -rdynamic
|
---|
72 |
|
---|
73 |
|
---|
74 | # compiler options
|
---|
75 |
|
---|
76 | #OPTIM = -O2 -ieee
|
---|
77 | OPTIM = -O2 -Wall -fno-rtti -fno-exceptions -fPIC
|
---|
78 | DEBUG = -g
|
---|
79 |
|
---|
80 | # libraries
|
---|
81 |
|
---|
82 | RANLIBDIR = ../lib
|
---|
83 | CERNDIR = /cern
|
---|
84 |
|
---|
85 | # system
|
---|
86 |
|
---|
87 | SYSTEM = linux
|
---|
88 |
|
---|
89 | # uncomment this for quiet compilation
|
---|
90 |
|
---|
91 | .SILENT:
|
---|
92 |
|
---|
93 | # @endcode
|
---|
94 | ##EOF
|
---|