source: trunk/Cosy/Makefile.conf.linux@ 17916

Last change on this file since 17916 was 9551, checked in by tbretz, 15 years ago
*** empty log message ***
File size: 892 bytes
Line 
1##################################################################
2#
3# config.mk
4#
5# @file config.mk
6#
7##################################################################
8
9# compilers
10
11CC = gcc
12CXX = g++
13F77 = f77
14AR = ar -rc
15
16#
17# ----->>> settings for compilation
18#
19OPTIM = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align
20OPTIMC = $(OPTIM) -pedantic
21OPTIMCXX = $(OPTIM) -Woverloaded-virtual
22# ggc 3.2: removed -fnonnull-objects -Wtraditional -Wnested-externs
23# -ftime-report -fmem-report
24DEBUG =
25ARCHDEF = -D__LINUX__
26SOFLAG = -shared
27
28# For debugging information use '-g'
29# For producing gmon.out use '-pg' (needs static linking)
30
31#MARS_LIB = -Llib $(SUBDIRS:%=-l%) $(MARSLIBS)
32#MARS_LIB = -Llib $(MARSLIBS) -lmimic $(GLIBLIBS)
33INCLUDES = -I. $(SUBDIRS:%=-I%) -I/usr/local/include
34
35# uncomment this for quiet compilation
36
37.SILENT:
Note: See TracBrowser for help on using the repository browser.