-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
62 lines (48 loc) · 1.28 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# |
# o---------------------------------------------------------------------o
# |
# | Numdiff makefile
# |
# o---------------------------------------------------------------------o
# |
# | Methodical Accelerator Design
# |
# | Copyright (c) 2011+ CERN, [email protected]
# |
# | For more information, see http://cern.ch/mad/numdiff
# |
# o---------------------------------------------------------------------o
# |
# | $Id$
# |
# For makefile documentation, please read make/README
# For information and bug report, please contact [email protected]
#
###################
# Project settings
PROJECT := numdiff
#################
# Build settings
#
# architecture bit: detect/32/64 (default is detect)
ARCH := detect
# debugging mode: yes/no (default is no)
DEBUG := no
# profiling mode: yes/no (default is no)
PROFILE := no
#############################
# Compilers/Linkers settings
# see make/compiler.* for supported compilers
# GNU=yes sets CC=gcc, CXX=g++, FC=gfortran (default)
# Intel=yes sets CC=icc/icl, CXX=icc/icl, FC=ifort (use icl on Windows)
# C compiler (default is gcc)
CC := gcc
# Linker (default is C compiler)
LD = $(CC)
# Tester (default is numdiff)
ND := numdiff
####################
# Makefile includes
makedir := ../../make
include $(makedir)/make.inc
# end of makefile