source: PSPA/madxPSPA/make/compiler.lf95 @ 457

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

import madx-5.01.00

File size: 880 bytes
Line 
1# |
2# o---------------------------------------------------------------------o
3# |
4# | MAD makefile - lf95 compiler settings
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#
20# makedep
21#
22
23# lf95 does not compute fortran dependencies
24# FDEP =
25
26#
27# preprocessor flags
28#
29
30CPPFLAGS += -D_LF95
31
32#
33# compiler flags
34#
35
36FFLAGS = -Wa,--$(ARCH) --f95 --o$(NOPT) --warn -c
37
38#
39# options flags
40#
41
42ifeq ($(DEBUG),yes)
43FFLAGS += -g --info --ap --chkglobal --lst --trap
44endif
45
46ifeq ($(PROFILE),yes) # not found in the doc
47FFLAGS += -pg
48endif
49
50#
51# extra flags
52#
53
54FFLAGS += --mod $(OBJDIR) $(addprefix -I,$(FC_DIR))
55
56# end of makefile
57
Note: See TracBrowser for help on using the repository browser.