Ignore:
Timestamp:
Feb 15, 2008, 4:48:37 PM (16 years ago)
Author:
rybkin
Message:

See C.L. 345

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/src/Makefile.core

    r11 r441  
    4141#
    4242
     43ifndef CMTMSGHDR
     44CMTMSGHDR = \#CMT--->
     45endif
     46
     47ifdef ECHO
     48VERBOSE = 1
     49endif
     50
     51ifndef VERBOSE
     52QUIET = 1
     53endif
     54
     55ifdef SILENT
     56QUIET = 1
     57MAKEFLAGS += --silent
     58endif
     59
    4360ifdef QUIET
    4461LEX_QUIET = 1
     
    5168LIB_QUIET = 1
    5269CLEANUP_QUIET = 1
     70INSTALL_QUIET = 1
    5371silent = @
    54 echo = @/bin/echo
     72echo = @- echo "$(CMTMSGHDR)"
    5573else
    5674silent =
    57 echo = @- echo
     75echo = @- echo "$(CMTMSGHDR)"
    5876endif
    5977
    6078ifdef LEX_QUIET
    6179lex_silent = @
    62 lex_echo = @/bin/echo rebuilding
     80lex_echo = $(echo) building
    6381else
    6482lex_silent =
    65 lex_echo = $(echo)
     83lex_echo = $(echo) building
    6684endif
    6785
    6886ifdef YACC_QUIET
    6987yacc_silent = @
    70 yacc_echo = @/bin/echo rebuilding
     88yacc_echo = $(echo) building
    7189else
    7290yacc_silent =
    73 yacc_echo = $(echo)
     91yacc_echo = $(echo) building
    7492endif
    7593
    7694ifdef C_QUIET
    7795c_silent = @
    78 c_echo = @/bin/echo rebuilding
     96c_echo = $(echo) compiling
    7997else
    8098c_silent =
    81 c_echo = $(echo)
     99c_echo = $(echo) compiling
    82100endif
    83101
    84102ifdef CPP_QUIET
    85103cpp_silent = @
    86 cpp_echo = @/bin/echo rebuilding
     104cpp_echo = $(echo) compiling
    87105else
    88106cpp_silent =
    89 cpp_echo = $(echo)
     107cpp_echo = $(echo) compiling
    90108endif
    91109
    92110ifdef FORTRAN_QUIET
    93111fortran_silent = @
    94 fortran_echo = @/bin/echo rebuilding
     112fortran_echo = $(echo) compiling
    95113else
    96114fortran_silent =
    97 fortran_echo = $(echo)
     115fortran_echo = $(echo) compiling
    98116endif
    99117
    100118ifdef JAVA_QUIET
    101119java_silent = @
    102 java_echo = @/bin/echo rebuilding
     120java_echo = $(echo) building
    103121else
    104122java_silent =
    105 java_echo = $(echo)
     123java_echo = $(echo) building
    106124endif
    107125
    108126ifdef LINK_QUIET
    109127link_silent = @
    110 link_echo = @/bin/echo rebuilding
     128link_echo = $(echo) building
    111129else
    112130link_silent =
    113 link_echo = $(echo)
     131link_echo = $(echo) building
    114132endif
    115133
    116134ifdef LIB_QUIET
    117135lib_silent = @
    118 lib_echo = @/bin/echo rebuilding
     136lib_echo = $(echo) building
    119137else
    120138lib_silent =
    121 lib_echo = $(echo)
     139lib_echo = $(echo) building
    122140endif
    123141
    124142ifdef CLEANUP_QUIET
    125143cleanup_silent = @
    126 cleanup_echo = @/bin/echo removing
     144cleanup_echo = $(echo) removing
    127145else
    128146cleanup_silent =
    129 cleanup_echo = $(echo)
     147cleanup_echo = $(echo) removing
     148endif
     149
     150ifdef INSTALL_QUIET
     151install_silent = @
     152install_echo = $(echo) installing
     153else
     154install_silent =
     155install_echo = $(echo) installing
     156endif
     157
     158ifdef ECHO
     159echo = @:
     160endif
     161
     162ifdef SILENT
     163echo = @:
    130164endif
    131165
Note: See TracChangeset for help on using the changeset viewer.