source: PSPA/madxPSPA/make/linker.cl @ 447

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

import madx-5.01.00

File size: 768 bytes
Line 
1# |
2# o---------------------------------------------------------------------o
3# |
4# | MAD makefile - cl linker 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# linker flags
21#
22
23LDFLAGS = /nologo /extlnk:.o
24
25#
26# options flags
27#
28
29ifeq ($(DEBUG),yes)
30LDFLAGS += /Zi /Yd
31endif
32
33ifeq ($(PROFILE),yes)
34LDFLAGS +=
35endif
36
37ifeq ($(STATIC),yes)
38LDFLAGS += /MT
39endif
40
41ifeq ($(SHARED),yes)
42LDFLAGS += # TODO
43endif
44
45#
46# command translator
47#
48
49LD_tr = $(strip $(subst $(SPACE)-o , /Fe,$1))
50
51# end of makefile
Note: See TracBrowser for help on using the repository browser.