Ignore:
Timestamp:
Feb 21, 2008, 5:59:30 PM (16 years ago)
Author:
rybkin
Message:

See C.L. 349

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/mgr/fragments/nmake/java_header

    r11 r445  
     1#-- start of java_header ------
    12
    23${CONSTITUENT}javadirs ::
    3         @if not exist $(javabin)${CONSTITUENT} mkdir $(javabin)${CONSTITUENT}
     4        $(silent) if not exist $(javabin)${CONSTITUENT} mkdir $(javabin)${CONSTITUENT}
    45
    56${CONSTITUENT} :: ${CONSTITUENT}javadirs $(javabin)${CONSTITUENT}.jar
    6         @echo "------> ${CONSTITUENT} ok"
     7        $(echo) "${CONSTITUENT} ok"
    78
    89$(javabin)${CONSTITUENT}.jar :: ${OBJS}
     
    2021
    2122${CONSTITUENT}install :: $(install_dir)\$(${CONSTITUENT}installname)
    22         @if NOT "$(CMTINSTALLAREA)"=="" echo "installation done"
     23!if "$(CMTINSTALLAREA)" != ""
     24        $(echo) "installation done"
     25!endif
    2326
    2427$(install_dir)\$(${CONSTITUENT}installname) :: $(javabin)$(${CONSTITUENT}installname)
    25         @if NOT "$(CMTINSTALLAREA)"=="" $(cmt_install_action) "$(PACKAGE_ROOT)\classes" "$(${CONSTITUENT}installname)" "$(install_dir)"
     28!if "$(CMTINSTALLAREA)" != ""
     29        $(install_echo) $(@F) into $(@D)
     30        $(install_silent) $(cmt_install_action) "$(PACKAGE_ROOT)\classes" "$(${CONSTITUENT}installname)" "$(install_dir)"
     31!endif
    2632
    2733${CONSTITUENT}clean :: ${CONSTITUENT}uninstall
     
    3036
    3137${CONSTITUENT}uninstall ::
    32         @if NOT "$(CMTINSTALLAREA)"=="" $(cmt_uninstall_action) "$(PACKAGE_ROOT)\classes" "$(${CONSTITUENT}installname)" "$(install_dir)"
     38!if "$(CMTINSTALLAREA)" != ""
     39        $(cleanup_echo) "$(${CONSTITUENT}installlibname)" from "$(install_dir)"
     40        $(cleanup_silent) $(cmt_uninstall_action) "$(PACKAGE_ROOT)\classes" "$(${CONSTITUENT}installname)" "$(install_dir)"
     41!endif
    3342
    3443
    3544${CONSTITUENT}clean ::
    36         if exist $(javabin)\${CONSTITUENT} rmdir /Q /S $(javabin)\${CONSTITUENT}
    37         if exist $(javabin)\${CONSTITUENT}.jar del $(javabin)\${CONSTITUENT}.jar
     45        $(cleanup_silent) if exist $(javabin)\${CONSTITUENT} rmdir /Q /S $(javabin)\${CONSTITUENT}
     46        $(cleanup_silent) if exist $(javabin)\${CONSTITUENT}.jar del $(javabin)\${CONSTITUENT}.jar
     47
     48#-- end of java_header ------
Note: See TracChangeset for help on using the changeset viewer.