Line | |
---|
1 | ##################################################################
|
---|
2 | #
|
---|
3 | # config.mk
|
---|
4 | #
|
---|
5 | # @file config.mk
|
---|
6 | #
|
---|
7 | ##################################################################
|
---|
8 | # @maintitle
|
---|
9 |
|
---|
10 | # @code
|
---|
11 |
|
---|
12 | #
|
---|
13 | # compilers
|
---|
14 | #
|
---|
15 |
|
---|
16 | CC = cc
|
---|
17 | CXX = cxx
|
---|
18 | F77 = f77
|
---|
19 | AR = ar -c -r
|
---|
20 |
|
---|
21 | #
|
---|
22 | # ----->>> settings for compilation
|
---|
23 | #
|
---|
24 |
|
---|
25 | OPTIM = -O2 -ieee -arch host
|
---|
26 | DEBUG = -g3 -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst,boolexprconst
|
---|
27 | ARCHDEF = -D__OSF__ -D__USE_STD_IOSTREAM -DR__ANSISTREAM
|
---|
28 | DYNLIB = -shared
|
---|
29 |
|
---|
30 | MARS_LIB = -Llib $(SUBDIRS/*/-l&) $(MARSLIBS)
|
---|
31 | INCLUDES = -I. $(SUBDIRS/*/-I&)
|
---|
32 |
|
---|
33 | # uncomment this for quiet compilation
|
---|
34 |
|
---|
35 | .SILENT:
|
---|
36 |
|
---|
37 | # @endcode
|
---|
38 | ##EOF
|
---|
39 |
|
---|
40 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.