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

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

Import all tags

File size: 2.6 KB
Line 
1 
2cflags    = $(CFLAGS)
3cppflags  = $(CFLAGS)
4fflags    = $(CFLAGS)
5
6cc        = cl.exe
7ccomp     = $(cc) /nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /Fo"$(bin)\\" /Fd"$(bin)\\" /FD /c
8clink   = link.exe kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
9
10cpp       = cl.exe
11cppcomp   = $(cpp) /nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /c
12cpplink   = link.exe kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
13
14####for       = f77
15####fcomp     = $(for) -c -I$(inc) $(fflags)
16####flink     = $(for)
17
18####lexflags  =
19####lex       = lex $(lexflags)
20
21####yaccflags =
22####yacc      = yacc $(yaccflags)
23
24ar        = link.exe -lib
25ranlib    = ranlib
26
27src       = ../src/
28inc       = ../src/
29mgr       = ../mgr/
30cmt       = ../cmt/
31bin       = ..\$(tag)\
32shortbin  = ..\$(tag)
33
34#---------------------------------------------
35# Controlling the verbosity of Make
36#
37
38!if defined (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 = @echo
50!else
51silent =
52echo = echo
53!endif
54
55!if defined (LEX_QUIET)
56lex_silent = @
57lex_echo = @echo rebuilding
58!else
59lex_silent =
60lex_echo = -@ $(echo)
61!endif
62
63!if defined (YACC_QUIET)
64yacc_silent = @
65yacc_echo = @echo rebuilding
66!else
67yacc_silent =
68yacc_echo = -@ $(echo)
69!endif
70
71!if defined (C_QUIET)
72c_silent = @
73c_echo = @echo rebuilding
74!else
75c_silent =
76c_echo = -@ $(echo)
77!endif
78
79!if defined (CPP_QUIET)
80cpp_silent = @
81cpp_echo = @echo rebuilding
82!else
83cpp_silent =
84cpp_echo = -@ $(echo)
85!endif
86
87!if defined (FORTRAN_QUIET)
88fortran_silent = @
89fortran_echo = @echo rebuilding
90!else
91fortran_silent =
92fortran_echo = -@ $(echo)
93!endif
94
95!if defined (JAVA_QUIET)
96java_silent = @
97java_echo = @echo rebuilding
98!else
99java_silent =
100java_echo = -@ $(echo)
101!endif
102
103!if defined (LINK_QUIET)
104link_silent = @
105link_echo = @echo rebuilding
106!else
107link_silent =
108link_echo = -@ $(echo)
109!endif
110
111!if defined (LIB_QUIET)
112lib_silent = @
113lib_echo = @echo rebuilding
114!else
115lib_silent =
116lib_echo = -@ $(echo)
117!endif
118
119!if defined (CLEANUP_QUIET)
120cleanup_silent = @
121cleanup_echo = @echo removing
122!else
123cleanup_silent =
124cleanup_echo = @ $(echo)
125!endif
126
127cmtexe = $(CMTROOT)\$(CMTBIN)\cmt.exe
128
129
Note: See TracBrowser for help on using the repository browser.