Changeset 69603 in vbox
- Timestamp:
- Nov 6, 2017 5:23:11 PM (7 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/Makefile.kmk
r68834 r69603 69 69 RTCat_TEMPLATE = VBoxR3Tool 70 70 RTCat_SOURCES = RTCat.cpp 71 RTCat_SOURCES += ../VBox/LoadVBoxDDU.cpp 71 72 72 73 # RTIsoMaker - ISO image maker - build version. … … 74 75 RTIsoMaker_TEMPLATE = VBoxR3Tool 75 76 RTIsoMaker_SOURCES = RTIsoMaker.cpp 77 RTIsoMaker_SOURCES += ../VBox/LoadVBoxDDU.cpp 76 78 77 79 # RTLs is a tool for listing file information. … … 79 81 RTLs_TEMPLATE = VBoxR3Tool 80 82 RTLs_SOURCES = RTLs.cpp 83 RTLs_SOURCES += ../VBox/LoadVBoxDDU.cpp 81 84 82 85 # RTRm is a tool for removing files and directories. … … 84 87 RTRm_TEMPLATE = VBoxR3Tool 85 88 RTRm_SOURCES = RTRm.cpp 89 RTRm_SOURCES += ../VBox/LoadVBoxDDU.cpp 86 90 87 91 # RTManifest is a tool for creating and verifying manifest files. … … 89 93 RTManifest_TEMPLATE = VBoxR3Tool 90 94 RTManifest_SOURCES = RTManifest.cpp 95 RTManifest_SOURCES += ../VBox/LoadVBoxDDU.cpp 91 96 92 97 # RTLdrFlt is similar to c++filt, except that it's for VMMR0.r0 stacks. … … 99 104 RTGzip_TEMPLATE = VBoxR3Tool 100 105 RTGzip_SOURCES = RTGzip.cpp 106 RTGzip_SOURCES += ../VBox/LoadVBoxDDU.cpp 101 107 102 108 ifdef VBOX_WITH_LIBCURL 103 # RTHttp - our http/https fetcher (for testing the http client API).104 PROGRAMS += RTHttp105 RTHttp_TEMPLATE = VBoxR3Tool106 RTHttp_SOURCES = RTHttp.cpp109 # RTHttp - our http/https fetcher (for testing the http client API). 110 PROGRAMS += RTHttp 111 RTHttp_TEMPLATE = VBoxR3Tool 112 RTHttp_SOURCES = RTHttp.cpp 107 113 endif 108 114 … … 116 122 RTTar_TEMPLATE = VBoxR3Tool 117 123 RTTar_SOURCES = RTTar.cpp 124 RTTar_SOURCES += ../VBox/LoadVBoxDDU.cpp 118 125 119 126 # RTUnzip - our unzip clone (for testing the unzip streaming code) … … 121 128 RTUnzip_TEMPLATE = VBoxR3Tool 122 129 RTUnzip_SOURCES = RTUnzip.cpp 130 RTUnzip_SOURCES += ../VBox/LoadVBoxDDU.cpp 123 131 124 132 # RTNtDbgHelp - our tar clone (for testing the tar/gzip/gunzip streaming code) … … 139 147 140 148 if1of ($(KBUILD_TARGET), darwin linux solaris win) 141 # RTKrnlModInfo - our lsmod/kextstat clone (for testing the RTKrnlMod code).142 PROGRAMS += RTKrnlModInfo143 RTKrnlModInfo_TEMPLATE = VBoxR3Tool144 RTKrnlModInfo_SOURCES = RTKrnlModInfo.cpp149 # RTKrnlModInfo - our lsmod/kextstat clone (for testing the RTKrnlMod code). 150 PROGRAMS += RTKrnlModInfo 151 RTKrnlModInfo_TEMPLATE = VBoxR3Tool 152 RTKrnlModInfo_SOURCES = RTKrnlModInfo.cpp 145 153 endif 146 154
Note:
See TracChangeset
for help on using the changeset viewer.