source: PSPA/madxPSPA/tools/numdiff/Makefile @ 430

Last change on this file since 430 was 430, checked in by touze, 11 years ago

import madx-5.01.00

File size: 1.2 KB
Line 
1# |
2# o---------------------------------------------------------------------o
3# |
4# | Numdiff makefile
5# |
6# o---------------------------------------------------------------------o
7# |
8# | Methodical Accelerator Design
9# |
10# | Copyright (c) 2011+ CERN, mad@cern.ch
11# |
12# | For more information, see http://cern.ch/mad
13# |
14# o---------------------------------------------------------------------o
15# |
16# | $Id$
17# |
18
19# For makefile documentation, please read make/README
20# For information and bug report, please contact mad@cern.ch
21#
22
23###################
24# Project settings
25
26PROJECT := numdiff
27
28#################
29# Build settings
30#
31
32# architecture bit: detect/32/64 (default is detect)
33ARCH    := detect
34
35# debugging mode: yes/no (default is no)
36DEBUG   := no
37
38# profiling mode: yes/no (default is no)
39PROFILE := no
40
41#############################
42# Compilers/Linkers settings
43# see make/compiler.* for supported compilers
44# GNU=yes   sets CC=gcc,     CXX=g++,     FC=gfortran (default)
45# Intel=yes sets CC=icc/icl, CXX=icc/icl, FC=ifort    (use icl on Windows)
46
47# C compiler (default is gcc)
48CC := gcc
49
50# Linker (default is C compiler)
51LD  = $(CC)
52
53####################
54# Makefile includes
55
56makedir := ../../make
57include $(makedir)/make.inc
58
59# end of makefile
Note: See TracBrowser for help on using the repository browser.