| | 143 | # |
|---|
| | 144 | # Install staged binaries on platforms where we can't cross |
|---|
| | 145 | # compile things. |
|---|
| | 146 | # |
|---|
| | 147 | ifneq ($(filter-out linux win l4, $(BUILD_TARGET)),) |
|---|
| | 148 | VBOX_PATH_STAGED ?= . |
|---|
| | 149 | |
|---|
| | 150 | # Additions. |
|---|
| | 151 | ifndef VBOX_WITH_LINUX_ADDITIONS |
|---|
| | 152 | ifndef VBOX_WITH_WIN32_ADDITIONS |
|---|
| | 153 | ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),) |
|---|
| | 154 | INSTALLS += staged-additions |
|---|
| | 155 | staged-additions_INST = $(INST_ADDITIONS) |
|---|
| | 156 | staged-additions_MODE = 0644 |
|---|
| | 157 | staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso |
|---|
| | 158 | endif |
|---|
| | 159 | endif |
|---|
| | 160 | endif |
|---|
| | 161 | |
|---|
| | 162 | # guesttool.exe |
|---|
| | 163 | ifndef VBOX_WITH_WIN32_ADDITIONS |
|---|
| | 164 | ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),) |
|---|
| | 165 | INSTALLS += staged-guesttool |
|---|
| | 166 | staged-guesttool_INST = $(INST_BIN) |
|---|
| | 167 | staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe |
|---|
| | 168 | endif |
|---|
| | 169 | endif |
|---|
| | 170 | |
|---|
| | 171 | endif |
|---|
| | 172 | |
|---|
| | 173 | |
|---|
| | 174 | |
|---|