source: CMT/v1r14p20031120/src/Makefile.core @ 1

Last change on this file since 1 was 1, checked in by arnault, 19 years ago

Import all tags

File size: 2.2 KB
Line 
1
2cflags    = $(CFLAGS)
3cppflags  = $(CFLAGS)
4fflags    = $(CFLAGS)
5
6cc        = cc
7ccomp     = $(cc)  -c -I$(inc) $(cflags)
8clink     = $(cc)
9
10cpp       = g++
11cppcomp   = $(cpp) -c -I$(inc) $(cppflags)
12cpplink   = $(cpp)
13
14for       = f77
15fcomp     = $(for) -c -I$(inc) $(fflags)
16flink     = $(for)
17
18lexflags  =
19lex       = lex $(lexflags)
20
21yaccflags =
22yacc      = yacc $(yaccflags)
23
24mkdir     = mkdir
25
26comp      = $(ccomp)
27link      = $(cc)
28
29ar        = ar -crl
30ranlib    = ranlib
31
32cmtexe = $(CMTROOT)/$(CMTBIN)/cmt.exe
33
34#---------------------------------------------
35# Controlling the verbosity of Make
36#
37
38ifdef QUIET
39LEX_QUIET = 1
40YACC_QUIET = 1
41C_QUIET = 1
42CPP_QUIET = 1
43FORTRAN_QUIET = 1
44JAVA_QUIET = 1
45LINK_QUIET = 1
46LIB_QUIET = 1
47CLEANUP_QUIET = 1
48silent = @
49echo = @/bin/echo
50else
51silent =
52echo = @- echo
53endif
54
55ifdef LEX_QUIET
56lex_silent = @
57lex_echo = @/bin/echo rebuilding
58else
59lex_silent =
60lex_echo = $(echo)
61endif
62
63ifdef YACC_QUIET
64yacc_silent = @
65yacc_echo = @/bin/echo rebuilding
66else
67yacc_silent =
68yacc_echo = $(echo)
69endif
70
71ifdef C_QUIET
72c_silent = @
73c_echo = @/bin/echo rebuilding
74else
75c_silent =
76c_echo = $(echo)
77endif
78
79ifdef CPP_QUIET
80cpp_silent = @
81cpp_echo = @/bin/echo rebuilding
82else
83cpp_silent =
84cpp_echo = $(echo)
85endif
86
87ifdef FORTRAN_QUIET
88fortran_silent = @
89fortran_echo = @/bin/echo rebuilding
90else
91fortran_silent =
92fortran_echo = $(echo)
93endif
94
95ifdef JAVA_QUIET
96java_silent = @
97java_echo = @/bin/echo rebuilding
98else
99java_silent =
100java_echo = $(echo)
101endif
102
103ifdef LINK_QUIET
104link_silent = @
105link_echo = @/bin/echo rebuilding
106else
107link_silent =
108link_echo = $(echo)
109endif
110
111ifdef LIB_QUIET
112lib_silent = @
113lib_echo = @/bin/echo rebuilding
114else
115lib_silent =
116lib_echo = $(echo)
117endif
118
119ifdef CLEANUP_QUIET
120cleanup_silent = @
121cleanup_echo = @/bin/echo removing
122else
123cleanup_silent =
124cleanup_echo = $(echo)
125endif
126
127SHELL     = /bin/sh
128
129src       = ../src/
130inc       = ../src/
131mgr       = ../mgr/
132cmt       = ../cmt/
133bin       = ../$(tag)/
134
135#
136#dirs ::
137#       @if test ! -r requirements ; then echo "No requirements file" ; fi; \
138#         if test ! -d $(bin) ; then $(mkdir) -p $(bin) ; fi
139#
Note: See TracBrowser for help on using the repository browser.