source: trunk/MagicSoft/Simulation/Detector/Camera/config.mk.linux-gnu@ 362

Last change on this file since 362 was 327, checked in by harald, 25 years ago
Now it is possible to compile the camera programm under osf1.
File size: 1.8 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-gnu,v $
20# $Revision: 1.2 $
21# $Author: harald $
22# $Date: 1999-11-19 08:40:43 $
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_TRIGGER = ../include-MTrigger
46INCLUDE_EVITA = ../../../include-Classes
47INCLUDE_REFL = ../Reflector
48INCLUDE_ROOT = ${ROOTSYS}/include
49INCLUDE_CPLUS = /usr/include/g++
50
51# all the stuff for ROOT
52
53
54ROOTLIBS = -L$(ROOTSYS)/lib -lNew -lBase -lCint -lClib \
55 -lCont -lFunc -lGraf -lGraf3d -lHist -lHtml \
56 -lMatrix -lMeta -lMinuit -lNet -lPostscript \
57 -lProof -lTree -lUnix -lZip -lRint
58
59ROOTGLIBS = -lGpad -lGui -lGX11 -lX3d -lX11
60
61GLIBS = $(ROOTLIBS) $(ROOTGLIBS) -L/usr/X11R6/lib \
62 -lXpm -lX11 -lm -ldl -rdynamic
63
64
65# compiler options
66
67#OPTIM = -O2 -ieee
68OPTIM = -O2 -Wall -fno-rtti -fno-exceptions -fPIC
69DEBUG = -g
70
71# libraries
72
73RANLIBDIR = ../lib
74CERNDIR = /cern
75
76# system
77
78SYSTEM = linux
79
80# uncomment this for quiet compilation
81
82.SILENT:
83
84# @endcode
85##EOF
Note: See TracBrowser for help on using the repository browser.