Line | |
---|
1 | ##################################################################
|
---|
2 | #
|
---|
3 | # config.mk
|
---|
4 | #
|
---|
5 | # @file config.mk
|
---|
6 | #
|
---|
7 | ##################################################################
|
---|
8 | # @maintitle
|
---|
9 |
|
---|
10 | # @code
|
---|
11 |
|
---|
12 | # compilers
|
---|
13 |
|
---|
14 | CC = gcc
|
---|
15 | CXX = g++
|
---|
16 | F77 = f77
|
---|
17 | AR = ar -rc
|
---|
18 | #
|
---|
19 | # ----->>> settings for compilation
|
---|
20 | #
|
---|
21 |
|
---|
22 | OPTIM = -O2 -Wall -fno-rtti -fno-exceptions -fPIC
|
---|
23 | DEBUG = -g
|
---|
24 |
|
---|
25 | MARS_LIB = -Llib $(SUBDIRS:%=-l%)
|
---|
26 | INCLUDES = -I. $(SUBDIRS:%=-I%)
|
---|
27 |
|
---|
28 | # uncomment this for quiet compilation
|
---|
29 |
|
---|
30 | .SILENT:
|
---|
31 |
|
---|
32 | # @endcode
|
---|
33 | ##EOF
|
---|
34 |
|
---|
35 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.