File: gnu_comp

package info (click to toggle)
adolc 1.8.7-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,592 kB
  • ctags: 1,654
  • sloc: ansic: 13,592; cpp: 10,280; makefile: 359; sh: 6
file content (34 lines) | stat: -rw-r--r-- 936 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#**************************************************************************
# Which compilers do you use?                                    COMPILER *
CC  = g++ # C++
MCC = gcc # C


#**************************************************************************
#                                                          COMPILER FLAGS *
# GENERAL FLAGS (e. g. optimization) 
#CFLAG = -g 
#CFLAG =  
#CFLAG = -O 
CFLAG = -O2 

# INCLUDES
IFLAG = -I$(ADHEADERS) # uncomment if necessary -I/usr/lib/g++-include

# LIBRARIES (COMPILING)
LFLAG = -L$(ADLIB)

# LIBRARIES (LINKING)
LIBS  = -lad -lm

# PREPROCESSOR FLAGS
PPFLAGS = -trigraphs -E -C


#**************************************************************************
# ar/ranlib utility                                         LIBRARY TOOLS *
ARCHIVE = ar rcv  
RANLIB  = ar qs
# RANLIB =`if [ -r /bin/ranlib -o -r /usr/bin/ranlib ]; \
#         then echo ranlib; else echo true; fi`