source: trunk/MagicSoft/Simulation/Detector/StarResponse/config.mk.linux-gnu@ 5321

Last change on this file since 5321 was 5099, checked in by moralejo, 20 years ago
Adapted headers to current c++ style, removed -Wno-deprecated from compilation options.
File size: 1.7 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.3 $
21# $Author: moralejo $
22# $Date: 2004-09-17 13:51:01 $
23##################################################################
24# @maintitle
25
26# @code
27
28# compilers
29
30CC = g++
31CXX = g++
32F77 = f77
33
34DOCUM = ${HOME}/detector/sus/sus
35
36# includes
37
38INCLUDE = ../include-GENERAL
39INCLUDE_COR = ../include-CORSIKA
40INCLUDE_MC = ../include-MC
41INCLUDE_TRIGGER = ../include-MTrigger
42INCLUDE_FADC = ../include-MFadc
43INCLUDE_ROOT = ${ROOTSYS}/include
44INCLUDE_CPLUS = /usr/include/g++
45
46INCLUDE_MARS_MBASE = ../../../Mars/mbase
47INCLUDE_MARS_MGEOM = ../../../Mars/mgeom
48INCLUDE_MARS_MGUI = ../../../Mars/mgui
49INCLUDE_MARS_MC = ../../../Mars/mmc
50INCLUDE_MARS_MRAW = ../../../Mars/mraw
51
52# all the stuff for ROOT
53
54
55ROOTLIBS = `root-config --libs`
56
57ROOTGLIBS = `root-config --glibs`
58
59GLIBS = $(ROOTLIBS) $(ROOTGLIBS) -L/usr/X11R6/lib \
60 -lXpm -lX11 -lm -ldl -rdynamic
61
62
63# compiler options
64
65OPTIM = -O2 -Wall -fPIC
66DEBUG = -g
67
68# libraries
69
70RANLIBDIR = ../lib
71
72# system
73
74SYSTEM = linux
75
76# uncomment this for quiet compilation
77
78.SILENT:
79
80# @endcode
81##EOF
Note: See TracBrowser for help on using the repository browser.