source: trunk/MagicSoft/Simulation/Detector/Camera/config.mk.osf1@ 5600

Last change on this file since 5600 was 5096, checked in by moralejo, 20 years ago
Simplified. Now Mars code is not compiled by camera. Instead, libmars.so is used for the linking at the very end.
File size: 2.1 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.osf1,v $
20# $Revision: 1.11 $
21# $Author: moralejo $
22# $Date: 2004-09-17 10:32:54 $
23##################################################################
24# @maintitle
25
26# @code
27
28# program
29
30PROGRAM = camera
31
32# compilers
33
34CC = cc
35CXX = cxx
36F77 = f77
37
38DOCUM = ${HOME}/detector/sus/sus
39
40# includes
41
42ROOTSYS = `root-config --prefix`
43INCLUDE = ../include-GENERAL
44INCLUDE_COR = ../include-CORSIKA
45INCLUDE_MC = ../include-MC
46INCLUDE_LONS = ../include-MLons
47INCLUDE_TRIGGER = ../include-MTrigger
48INCLUDE_FADC = ../include-MFadc
49INCLUDE_STAR = ../StarResponse
50INCLUDE_ROOT = ${ROOTSYS}/include
51INCLUDE_CPLUS = /usr/include/cxx
52
53INCLUDE_MARS_MBASE = ../../../Mars/mbase
54INCLUDE_MARS_MGEOM = ../../../Mars/mgeom
55INCLUDE_MARS_MGUI = ../../../Mars/mgui
56INCLUDE_MARS_MC = ../../../Mars/mmc
57INCLUDE_MARS_MRAW = ../../../Mars/mraw
58
59OPTIM = -O2 -ieee -arch host -lpthread
60DEBUG = -g -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst,boolexprconst
61
62# libraries
63ROOTLIBS = `root-config --libs` -lMinuit -lHistPainter -lThread
64
65ROOTGLIBS = `root-config --glibs` -lMinuit -lHistPainter -lThread -lMatrix -lPhysics -lGui -lm
66
67ROOTVER = `root-config --version`
68ROOTCFLAGS= `root-config --cflags`
69
70GLIBS = $(ROOTLIBS) $(ROOTGLIBS)
71
72RANLIBDIR = ../lib
73
74# system
75
76SYSTEM = osf1
77
78# uncomment this for quiet compilation
79
80.SILENT:
81
82# @endcode
83##EOF
84
Note: See TracBrowser for help on using the repository browser.