ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/compilers.mk
Revision: 1.17
Committed: Fri Dec 10 13:57:46 2004 UTC (20 years, 5 months ago) by sashby
Branch: MAIN
CVS Tags: HEAD
Changes since 1.16: +0 -0 lines
State: FILE REMOVED
Log Message:
*** empty log message ***

File Contents

# Content
1 #
2 # DO NOT ADD ANYTHING NEW TO THIS FILE -
3 # USE A ToolDoc TO DEFINE NEW TOOLS
4 #
5 #
6
7 #----------------------------------------------
8 # Should be moved out to a ToolDoc
9 # -------------------
10 ArchiveSuffix = a
11 ArchiveTool = ar -rc $@ $^
12 ArchiveCCTool = $(ArchiveTool)
13 DebugArchiveCCTool = $(ArchiveTool)
14
15 #-----------------------------------------------
16 # Insure++
17 # Should be moved out to a ToolDoc
18 #-----------------------------------------------
19 Insure:=insure
20 .psrc :
21 if [ -f .psrc ]; then \
22 rm .psrc; \
23 fi;
24 ifeq ($(CCcompiler),egcs)
25 echo insure++.compiler_cpp g++ >> .psrc
26 else
27 echo insure++.compiler_cpp $(CXX) >> .psrc
28 endif
29 echo insure++.temp_directory /tmp >> .psrc
30 echo insure++.compiler_default cpp >> .psrc
31 echo insure++.summarize leaks >> .psrc
32 echo insure++.inuse on >> .psrc
33
34 #-----------------------------------------------
35 # Macabe
36 # Should be moved out to a ToolDoc
37 #-----------------------------------------------
38 ifdef MCCABE_EXTENSIONS
39 include mccabe.mk
40 endif