Changeset 9275 for trunk/make
- Timestamp:
- Sep 20, 2002, 5:39:41 AM (23 years ago)
- File:
-
- 1 edited
-
trunk/make/process.mak (modified) (19 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/make/process.mak
r9240 r9275 1 # $Id: process.mak,v 1.3 1 2002-09-14 23:27:04bird Exp $1 # $Id: process.mak,v 1.32 2002-09-20 03:39:41 bird Exp $ 2 2 3 3 # … … 318 318 !endif 319 319 320 # Default public book dirs 321 !ifndef TARGET_BOOK_PUB_BASE 322 TARGET_BOOK_PUB_BASE = $(PATH_PUB) 323 !endif 324 !ifndef TARGET_BOOK_PUB_SUB 325 TARGET_BOOK_PUB_SUB = $(PATH_SUB_BOOK) 326 !endif 327 !ifndef TARGET_BOOK_PUB_DIR 328 TARGET_BOOK_PUB_DIR = $(TARGET_BOOK_PUB_BASE)\$(TARGET_BOOK_PUB_SUB) 329 !endif 330 331 # Default public help dirs 332 !ifndef TARGET_HELP_PUB_BASE 333 TARGET_HELP_PUB_BASE = $(PATH_PUB) 334 !endif 335 !ifndef TARGET_HELP_PUB_SUB 336 TARGET_HELP_PUB_SUB = $(PATH_SUB_HELP) 337 !endif 338 !ifndef TARGET_HELP_PUB_DIR 339 TARGET_HELP_PUB_DIR = $(TARGET_HELP_PUB_BASE)\$(TARGET_HELP_PUB_SUB) 340 !endif 341 342 # Default public docs dirs 343 !ifndef TARGET_DOC_PUB_BASE 344 TARGET_DOC_PUB_BASE = $(PATH_PUB) 345 !endif 346 !ifndef TARGET_DOC_PUB_SUB 347 TARGET_DOC_PUB_SUB = $(PATH_SUB_DOC) 348 !endif 349 !ifndef TARGET_DOC_PUB_DIR 350 TARGET_DOC_PUB_DIR = $(TARGET_DOC_PUB_BASE)\$(TARGET_DOC_PUB_SUB) 351 !endif 352 320 353 # Default depend filename. 321 354 !ifndef TARGET_DEPEND … … 429 462 # ----------------------------------------------------------------------------- 430 463 .SUFFIXES: 431 .SUFFIXES: .c .cpp .orc .asm .$(EXT_OBJ) .$(EXT_RES) .rc .ii .s 464 .SUFFIXES: .c .cpp .orc .asm .$(EXT_OBJ) .$(EXT_RES) .rc .ii .s .ipp .ipf .$(EXT_INF) .$(EXT_HLP) 432 465 433 466 # … … 661 694 662 695 696 # Compiling INFs. 697 .ipf{$(PATH_TARGET)}.$(EXT_INF): 698 @$(ECHO) BOOK Compiler $(CLRFIL)$(_SRC)$(CLRRST) 699 \ 700 !ifndef BUILD_VERBOSE 701 @ \ 702 !endif 703 $(INFC_CMD) 704 705 .ipf.inf: 706 @$(ECHO) BOOK Compiler $(CLRFIL)$(_SRC)$(CLRRST) 707 \ 708 !ifndef BUILD_VERBOSE 709 @ \ 710 !endif 711 $(INFC_CMD) 712 713 714 # Compiling INFs with pre-compiling 715 .ipp{$(PATH_TARGET)}.$(EXT_INF): 716 @$(ECHO) CC Pre + BOOK Compiler $(CLRFIL)$(_SRC)$(CLRRST) 717 !ifndef CC_PC_2_STRIPPED_STDOUT 718 $(TOOL_ECHO) $(CLRERR)fatal error: CC_PC_2_STRIPPED_STDOUT isn't supported on this compiler. $(CLRRST) && false 719 !endif 720 \ 721 !ifndef BUILD_VERBOSE 722 @ \ 723 !endif 724 $(INFC_CMD_PRE) 725 726 .ipp.inf: 727 @$(ECHO) CC Pre + BOOK Compiler $(CLRFIL)$(_SRC)$(CLRRST) 728 !ifndef CC_PC_2_STRIPPED_STDOUT 729 $(TOOL_ECHO) $(CLRERR)fatal error: CC_PC_2_STRIPPED_STDOUT isn't supported on this compiler. $(CLRRST) && false 730 !endif 731 \ 732 !ifndef BUILD_VERBOSE 733 @ \ 734 !endif 735 $(INFC_CMD_PRE) 736 737 738 # Compiling HLPs 739 .ipf{$(PATH_TARGET)}.$(EXT_HLP): 740 @$(ECHO) HELP Compiler $(CLRFIL)$(_SRC)$(CLRRST) 741 \ 742 !ifndef BUILD_VERBOSE 743 @ \ 744 !endif 745 $(HLPC_CMD) 746 747 .ipf.hlp: 748 @$(ECHO) HELP Compiler $(CLRFIL)$(_SRC)$(CLRRST) 749 \ 750 !ifndef BUILD_VERBOSE 751 @ \ 752 !endif 753 $(HLPC_CMD) 754 755 756 # Compiling HLPs with pre-compiling 757 .ipp{$(PATH_TARGET)}.$(EXT_HLP): 758 @$(ECHO) CC Pre + HELP Compiler $(CLRFIL)$(_SRC)$(CLRRST) 759 !ifndef CC_PC_2_STRIPPED_STDOUT 760 $(TOOL_ECHO) $(CLRERR)fatal error: CC_PC_2_STRIPPED_STDOUT isn't supported on this compiler. $(CLRRST) && false 761 !endif 762 \ 763 !ifndef BUILD_VERBOSE 764 @ \ 765 !endif 766 $(HLPC_CMD_PRE) 767 768 .ipp.hlp: 769 @$(ECHO) CC Pre + HELP Compiler $(CLRFIL)$(_SRC)$(CLRRST) 770 !ifndef CC_PC_2_STRIPPED_STDOUT 771 $(TOOL_ECHO) $(CLRERR)fatal error: CC_PC_2_STRIPPED_STDOUT isn't supported on this compiler. $(CLRRST) && false 772 !endif 773 \ 774 !ifndef BUILD_VERBOSE 775 @ \ 776 !endif 777 $(HLPC_CMD_PRE) 663 778 664 779 … … 676 791 # 2. Make Needed Tools (stuff required in the next steps) 677 792 # 3. Make Libraries (all kinds) 678 # 4. Make Executables793 # 4. Make Binaries (ie. executable files) 679 794 # 5. Make Miscellaneous Targets 680 795 # 6. Make Install … … 703 818 _build_banner_needed needed \ 704 819 _build_banner_lib lib \ 705 _build_banner_ executable executable\706 _build_banner_misc ellaneous miscellaneous\820 _build_banner_binary binary \ 821 _build_banner_misc misc \ 707 822 _build_banner_publish publish 708 823 … … 721 836 @$(ECHO)$(CLRMAK)[Start Pass 3 - Make Libraries] $(CLRRST) 722 837 @SET _BUILD_PASS=3 723 _build_banner_ executable:724 @$(ECHO)$(CLRMAK)[Start Pass 4 - Make Executables] $(CLRRST)838 _build_banner_binary: 839 @$(ECHO)$(CLRMAK)[Start Pass 4 - Make Binaries] $(CLRRST) 725 840 @SET _BUILD_PASS=4 726 _build_banner_misc ellaneous:841 _build_banner_misc: 727 842 @$(ECHO)$(CLRMAK)[Start Pass 5 - Make Miscellaneous Targets] $(CLRRST) 728 843 @SET _BUILD_PASS=5 … … 755 870 756 871 pass3: _build_banner_lib lib \ 757 _build_banner_ executable executable\758 _build_banner_misc ellaneous miscellaneous\872 _build_banner_binary binary \ 873 _build_banner_misc misc \ 759 874 _build_banner_publish publish 760 875 761 pass4: _build_banner_ executable executable\762 _build_banner_misc ellaneous miscellaneous\876 pass4: _build_banner_binary binary \ 877 _build_banner_misc misc \ 763 878 _build_banner_publish publish 764 879 765 pass5: _build_banner_misc ellaneous miscellaneous\880 pass5: _build_banner_misc misc \ 766 881 _build_banner_publish publish 767 882 … … 769 884 770 885 quick: _build_banner_lib lib \ 771 _build_banner_ executable executable\886 _build_banner_binary binary \ 772 887 _build_banner_publish publish 773 888 … … 810 925 @$(TOOL_DODIRS) "$(SUBDIRS_CLEAN)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) NODEP=1 $@ 811 926 !else 812 ! if "$(SUBDIRS)$(SUBDIRS_NEEDED)$(SUBDIRS_LIB)$(SUBDIRS_ EXECUTABLES)$(SUBDIRS_MISC)" != ""813 @$(TOOL_DODIRS) "$(SUBDIRS) $(SUBDIRS_NEEDED) $(SUBDIRS_LIB) $(SUBDIRS_ EXECUTABLES) $(SUBDIRS_MISC)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) NODEP=1 $@927 ! if "$(SUBDIRS)$(SUBDIRS_NEEDED)$(SUBDIRS_LIB)$(SUBDIRS_BINARY)$(SUBDIRS_MISC)" != "" 928 @$(TOOL_DODIRS) "$(SUBDIRS) $(SUBDIRS_NEEDED) $(SUBDIRS_LIB) $(SUBDIRS_BINARY) $(SUBDIRS_MISC)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) NODEP=1 $@ 814 929 ! endif 815 930 !endif … … 817 932 @$(TOOL_DOMAKES) "$(PREMAKEFILES_CLEAN)" $(TOOL_MAKE) NODEP=1 $@ 818 933 !else 819 ! if "$(PREMAKEFILES)$(PREMAKEFILES_NEEDED)$(PREMAKEFILES_LIB)$(PREMAKEFILES_ EXECUTABLES)$(PREMAKEFILES_MISC)" != ""820 @$(TOOL_DOMAKES) "$(PREMAKEFILES) $(PREMAKEFILES_NEEDED) $(PREMAKEFILES_LIB) $(PREMAKEFILES_ EXECUTABLES) $(PREMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@934 ! if "$(PREMAKEFILES)$(PREMAKEFILES_NEEDED)$(PREMAKEFILES_LIB)$(PREMAKEFILES_BINARY)$(PREMAKEFILES_MISC)" != "" 935 @$(TOOL_DOMAKES) "$(PREMAKEFILES) $(PREMAKEFILES_NEEDED) $(PREMAKEFILES_LIB) $(PREMAKEFILES_BINARY) $(PREMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@ 821 936 ! endif 822 937 !endif … … 824 939 @$(TOOL_DOMAKES) "$(POSTMAKEFILES_CLEAN)" $(TOOL_MAKE) NODEP=1 $@ 825 940 !else 826 ! if "$(POSTMAKEFILES)$(POSTMAKEFILES_NEEDED)$(POSTMAKEFILES_LIB)$(POSTMAKEFILES_ EXECUTABLES)$(POSTMAKEFILES_MISC)" != ""827 @$(TOOL_DOMAKES) "$(POSTMAKEFILES) $(POSTMAKEFILES_NEEDED) $(POSTMAKEFILES_LIB) $(POSTMAKEFILES_ EXECUTABLES) $(POSTMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@941 ! if "$(POSTMAKEFILES)$(POSTMAKEFILES_NEEDED)$(POSTMAKEFILES_LIB)$(POSTMAKEFILES_BINARY)$(POSTMAKEFILES_MISC)" != "" 942 @$(TOOL_DOMAKES) "$(POSTMAKEFILES) $(POSTMAKEFILES_NEEDED) $(POSTMAKEFILES_LIB) $(POSTMAKEFILES_BINARY) $(POSTMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@ 828 943 ! endif 829 944 !endif … … 863 978 @$(TOOL_DODIRS) "$(SUBDIRS_DEP)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) NODEP=1 $@ 864 979 !else 865 ! if "$(SUBDIRS)$(SUBDIRS_NEEDED)$(SUBDIRS_LIB)$(SUBDIRS_ EXECUTABLES)$(SUBDIRS_MISC)" != ""866 @$(TOOL_DODIRS) "$(SUBDIRS) $(SUBDIRS_NEEDED) $(SUBDIRS_LIB) $(SUBDIRS_ EXECUTABLES) $(SUBDIRS_MISC)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) NODEP=1 $@980 ! if "$(SUBDIRS)$(SUBDIRS_NEEDED)$(SUBDIRS_LIB)$(SUBDIRS_BINARY)$(SUBDIRS_MISC)" != "" 981 @$(TOOL_DODIRS) "$(SUBDIRS) $(SUBDIRS_NEEDED) $(SUBDIRS_LIB) $(SUBDIRS_BINARY) $(SUBDIRS_MISC)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) NODEP=1 $@ 867 982 ! endif 868 983 !endif … … 870 985 @$(TOOL_DOMAKES) "$(PREMAKEFILES_DEP)" $(TOOL_MAKE) NODEP=1 $@ 871 986 !else 872 ! if "$(PREMAKEFILES)$(PREMAKEFILES_NEEDED)$(PREMAKEFILES_LIB)$(PREMAKEFILES_ EXECUTABLES)$(PREMAKEFILES_MISC)" != ""873 @$(TOOL_DOMAKES) "$(PREMAKEFILES) $(PREMAKEFILES_NEEDED) $(PREMAKEFILES_LIB) $(PREMAKEFILES_ EXECUTABLES) $(PREMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@987 ! if "$(PREMAKEFILES)$(PREMAKEFILES_NEEDED)$(PREMAKEFILES_LIB)$(PREMAKEFILES_BINARY)$(PREMAKEFILES_MISC)" != "" 988 @$(TOOL_DOMAKES) "$(PREMAKEFILES) $(PREMAKEFILES_NEEDED) $(PREMAKEFILES_LIB) $(PREMAKEFILES_BINARY) $(PREMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@ 874 989 ! endif 875 990 !endif … … 877 992 @$(TOOL_DOMAKES) "$(POSTMAKEFILES_DEP)" $(TOOL_MAKE) NODEP=1 $@ 878 993 !else 879 ! if "$(POSTMAKEFILES)$(POSTMAKEFILES_NEEDED)$(POSTMAKEFILES_LIB)$(POSTMAKEFILES_ EXECUTABLES)$(POSTMAKEFILES_MISC)" != ""880 @$(TOOL_DOMAKES) "$(POSTMAKEFILES) $(POSTMAKEFILES_NEEDED) $(POSTMAKEFILES_LIB) $(POSTMAKEFILES_ EXECUTABLES) $(POSTMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@994 ! if "$(POSTMAKEFILES)$(POSTMAKEFILES_NEEDED)$(POSTMAKEFILES_LIB)$(POSTMAKEFILES_BINARY)$(POSTMAKEFILES_MISC)" != "" 995 @$(TOOL_DOMAKES) "$(POSTMAKEFILES) $(POSTMAKEFILES_NEEDED) $(POSTMAKEFILES_LIB) $(POSTMAKEFILES_BINARY) $(POSTMAKEFILES_MISC)" $(TOOL_MAKE) NODEP=1 $@ 881 996 ! endif 882 997 !endif … … 972 1087 973 1088 # ----------------------------------------------------------------------------- 974 # Pass 4 - The executable rule - Build the executables.975 # ----------------------------------------------------------------------------- 976 !ifdef SUBDIRS_ EXECUTABLE977 _SUBDIRS_ EXECUTABLE = _subdir_executable978 $(_SUBDIRS_ EXECUTABLE):979 @$(TOOL_DODIRS) "$(SUBDIRS_ EXECUTABLE)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) executable1089 # Pass 4 - The binary rule - Build the binary. 1090 # ----------------------------------------------------------------------------- 1091 !ifdef SUBDIRS_BINARY 1092 _SUBDIRS_BINARY = _subdir_binary 1093 $(_SUBDIRS_BINARY): 1094 @$(TOOL_DODIRS) "$(SUBDIRS_BINARY)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) binary 980 1095 !else 981 1096 ! ifdef SUBDIRS 982 _SUBDIRS_ EXECUTABLE = _subdir_executable983 $(_SUBDIRS_ EXECUTABLE):984 @$(TOOL_DODIRS) "$(SUBDIRS)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) executable985 ! endif 986 !endif 987 988 !ifdef PREMAKEFILES_ EXECUTABLE989 _PREMAKEFILES_ EXECUTABLE = _premakefiles_executable990 $(_PREMAKEFILES_ EXECUTABLE):991 @$(TOOL_DOMAKES) "$(PREMAKEFILES_ EXECUTABLE)" $(TOOL_MAKE) executable1097 _SUBDIRS_BINARY = _subdir_binary 1098 $(_SUBDIRS_BINARY): 1099 @$(TOOL_DODIRS) "$(SUBDIRS)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) binary 1100 ! endif 1101 !endif 1102 1103 !ifdef PREMAKEFILES_BINARY 1104 _PREMAKEFILES_BINARY = _premakefiles_binary 1105 $(_PREMAKEFILES_BINARY): 1106 @$(TOOL_DOMAKES) "$(PREMAKEFILES_BINARY)" $(TOOL_MAKE) binary 992 1107 !else 993 1108 ! ifdef PREMAKEFILES 994 _PREMAKEFILES_ EXECUTABLE = _premakefiles_executable995 $(_PREMAKEFILES_ EXECUTABLE):996 @$(TOOL_DOMAKES) "$(PREMAKEFILES)" $(TOOL_MAKE) executable997 ! endif 998 !endif 999 1000 executable: \1109 _PREMAKEFILES_BINARY = _premakefiles_binary 1110 $(_PREMAKEFILES_BINARY): 1111 @$(TOOL_DOMAKES) "$(PREMAKEFILES)" $(TOOL_MAKE) binary 1112 ! endif 1113 !endif 1114 1115 binary executable: \ 1001 1116 !if "$(TARGET_MODE)" != "LIB" && "$(TARGET_MODE)" != "SYSLIB" && "$(TARGET_MODE)" != "IFSLIB" && !defined(TARGET_NEEDED) 1002 $(_SUBDIRS_ EXECUTABLE) $(_PREMAKEFILES_EXECUTABLE) $(TARGET) $(_TARGET_EARLY_PUBLISH)1003 !else 1004 $(_SUBDIRS_ EXECUTABLE) $(_PREMAKEFILES_EXECUTABLE)1005 !endif 1006 !ifdef POSTMAKEFILES_ EXECUTABLE1007 @$(TOOL_DOMAKES) "$(POSTMAKEFILES_ EXECUTABLE)" $(TOOL_MAKE) $@1117 $(_SUBDIRS_BINARY) $(_PREMAKEFILES_BINARY) $(TARGET) $(_TARGET_EARLY_PUBLISH) 1118 !else 1119 $(_SUBDIRS_BINARY) $(_PREMAKEFILES_BINARY) 1120 !endif 1121 !ifdef POSTMAKEFILES_BINARY 1122 @$(TOOL_DOMAKES) "$(POSTMAKEFILES_BINARY)" $(TOOL_MAKE) $@ 1008 1123 !else 1009 1124 ! ifdef POSTMAKEFILES … … 1015 1130 1016 1131 # ----------------------------------------------------------------------------- 1017 # Pass 5 - The misc ellaneous rule - Makes othermiscellaneous stuff like1018 # documentations etc. This is experimental for the moment.1132 # Pass 5 - The misc(ellaneous) rule - Makes miscellaneous stuff like 1133 # help, documentations etc. This is experimental for the moment. 1019 1134 # ----------------------------------------------------------------------------- 1020 1135 !ifdef SUBDIRS_MISC 1021 1136 _SUBDIRS_MISC = _subdir_misc 1022 1137 $(_SUBDIRS_MISC): 1023 @$(TOOL_DODIRS) "$(SUBDIRS_MISC)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) misc ellaneous1138 @$(TOOL_DODIRS) "$(SUBDIRS_MISC)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) misc 1024 1139 !else 1025 1140 ! ifdef SUBDIRS 1026 1141 _SUBDIRS_MISC = _subdir_misc 1027 1142 $(_SUBDIRS_MISC): 1028 @$(TOOL_DODIRS) "$(SUBDIRS)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) misc ellaneous1143 @$(TOOL_DODIRS) "$(SUBDIRS)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) misc 1029 1144 ! endif 1030 1145 !endif … … 1033 1148 _PREMAKEFILES_MISC = _premakefiles_misc 1034 1149 $(PREMAKEFILES_MISC): 1035 @$(TOOL_DOMAKES) "$(PREMAKEFILES_MISC)" $(TOOL_MAKE) misc ellaneous1150 @$(TOOL_DOMAKES) "$(PREMAKEFILES_MISC)" $(TOOL_MAKE) misc 1036 1151 !else 1037 1152 ! ifdef PREMAKEFILES 1038 1153 _PREMAKEFILES_MISC = _premakefiles_misc 1039 1154 $(_PREMAKEFILES_MISC): 1040 @$(TOOL_DOMAKES) "$(PREMAKEFILES)" $(TOOL_MAKE) misc ellaneous1041 ! endif 1042 !endif 1043 1044 misc ellaneous:$(_SUBDIRS_MISC) $(_PREMAKEFILES_MISC) \1045 $(TARGET_DOCS) $(TARGET_MISC)1046 !if "$(TARGET_ DOCS)$(TARGET_MISC)" != ""1047 @$(ECHO) Successfully Built $(CLRFIL)$(TARGET_ DOCS) $(TARGET_MISC)$(CLRRST)1155 @$(TOOL_DOMAKES) "$(PREMAKEFILES)" $(TOOL_MAKE) misc 1156 ! endif 1157 !endif 1158 1159 misc miscellaneous: $(_SUBDIRS_MISC) $(_PREMAKEFILES_MISC) \ 1160 $(TARGET_BOOKS) $(TARGET_HELPS) $(TARGET_DOCS) $(TARGET_MISC) 1161 !if "$(TARGET_BOOKS)$(TARGET_HELPS)$(TARGET_DOCS)$(TARGET_MISC)" != "" 1162 @$(ECHO) Successfully Built $(CLRFIL)$(TARGET_BOOKS) $(TARGET_HELPS) $(TARGET_DOCS) $(TARGET_MISC)$(CLRRST) 1048 1163 !endif 1049 1164 !ifdef POSTMAKEFILES_MISC … … 1112 1227 ! endif 1113 1228 !endif 1229 !if "$(TARGET_BOOKS)" != "" 1230 @$(ECHO) Publishing Book(s) $(CLRFIL)$(TARGET_BOOKS)$(CLRTXT) to directory $(CLRFIL)$(TARGET_BOOK_PUB_DIR)$(CLRRST) 1231 @if not exist "$(TARGET_BOOK_PUB_DIR)" $(TOOL_CREATEPATH) $(TARGET_BOOK_PUB_DIR) 1232 @$(TOOL_COPY) $(TARGET_BOOKS) $(TARGET_BOOK_PUB_DIR) 1233 !endif 1234 !if "$(TARGET_HELPS)" != "" 1235 @$(ECHO) Publishing Help file(s) $(CLRFIL)$(TARGET_HELPS)$(CLRTXT) to directory $(CLRFIL)$(TARGET_HELP_PUB_DIR)$(CLRRST) 1236 @if not exist "$(TARGET_HELP_PUB_DIR)" $(TOOL_CREATEPATH) $(TARGET_HELP_PUB_DIR) 1237 @$(TOOL_COPY) $(TARGET_HELPS) $(TARGET_HELP_PUB_DIR) 1238 !endif 1114 1239 !if "$(TARGET_DOCS)" != "" 1115 $(TOOL_COPY) $(TARGET_DOCS) $(PATH_DOC) 1240 @$(ECHO) Publishing Doc(s) $(CLRFIL)$(TARGET_DOCS)$(CLRTXT) to directory $(CLRFIL)$(TARGET_DOC_PUB_DIR)$(CLRRST) 1241 @if not exist "$(TARGET_DOC_PUB_DIR)" $(TOOL_CREATEPATH) $(TARGET_DOC_PUB_DIR) 1242 @$(TOOL_COPY) $(TARGET_DOCS) $(TARGET_DOC_PUB_DIR) 1116 1243 !endif 1117 1244
Note:
See TracChangeset
for help on using the changeset viewer.
