- Timestamp:
- Mar 14, 2018 2:04:51 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r71271 r71322 5 5 6 6 # 7 # Copyright (C) 2006-201 7Oracle Corporation7 # Copyright (C) 2006-2018 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 19 19 include $(KBUILD_PATH)/subheader.kmk 20 20 21 21 22 # 22 23 # Globals. 23 24 # 24 VBOX_VIRTUALBOX4_SRC := $(PATH_SUB_CURRENT) 25 VBOX_VIRTUALBOX4_OUT_DIR := $(PATH_TARGET)/VirtualBox/misc 26 27 # Show the update notifier dialog during startup. If this setting is disabled 28 # the user can still update using the menu if desired. 29 ifndef VBOX_OSE 30 VBOX_WITH_UPDATE_REQUEST := 1 31 endif 32 33 # 34 # The targets. 25 VBOX_VIRTUALBOX_SRC := $(PATH_SUB_CURRENT) 26 VBOX_VIRTUALBOX_OUT_DIR := $(PATH_TARGET)/VirtualBox/misc 27 28 29 # 30 # Targets. 35 31 # 36 32 ifdef VBOX_WITH_HARDENING … … 41 37 PROGRAMS += VirtualBox 42 38 endif 43 44 39 INSTALLS += VirtualBox.nls 45 40 … … 87 82 IMAGES := 88 83 # FORMS and TRANSLATIONS are reset further down. 84 85 86 # 87 # Perform initial new version check on startup. 88 # If this setting is disabled the user can still check using the menu. 89 # 90 ifndef VBOX_OSE 91 VBOX_WITH_UPDATE_REQUEST := 1 92 endif 89 93 90 94 … … 979 983 VirtualBox_SOURCES += VirtualBox2_x4.qrc 980 984 VirtualBox2_x4.qrc_RCCFLAGS = -name BASIC2_X4 981 VirtualBox_SOURCES += $(VBOX_VIRTUALBOX 4_OUT_DIR)/VirtualBoxBrand.qrc982 $(VBOX_VIRTUALBOX 4_OUT_DIR)/VirtualBoxBrand.qrc_RCCFLAGS = -name BRAND985 VirtualBox_SOURCES += $(VBOX_VIRTUALBOX_OUT_DIR)/VirtualBoxBrand.qrc 986 $(VBOX_VIRTUALBOX_OUT_DIR)/VirtualBoxBrand.qrc_RCCFLAGS = -name BRAND 983 987 if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL) 984 988 VirtualBox_SOURCES += VirtualBoxShaders.qrc … … 1022 1026 ): \ 1023 1027 $(VBOX_XIDL_FILE) \ 1024 $(VBOX_VIRTUALBOX 4_SRC)/src/globals/COMWrappers.xsl \1028 $(VBOX_VIRTUALBOX_SRC)/src/globals/COMWrappers.xsl \ 1025 1029 $(VBOX_FILESPLIT) \ 1026 1030 | $$(dir $$@) … … 1028 1032 $(QUIET)$(RM) -f -- "$@" "$(PATH_TARGET)/VirtualBoxComWrapperFiles.dep" 1029 1033 $(QUIET)$(VBOX_XSLTPROC) -o $@ \ 1030 $(VBOX_VIRTUALBOX 4_SRC)/src/globals/COMWrappers.xsl $<1034 $(VBOX_VIRTUALBOX_SRC)/src/globals/COMWrappers.xsl $< 1031 1035 $(QUIET)$(VBOX_FILESPLIT) $@ $(VirtualBox_0_OUTDIR)/include \ 1032 1036 $(PATH_TARGET)/VirtualBoxComWrapperFiles.dep VirtualBox_VBOX_COMWRAPPERS … … 1040 1044 # Generate qrc file with branded icons. 1041 1045 # 1042 VirtualBox_BLDDIRS += $(VBOX_VIRTUALBOX 4_OUT_DIR)1043 VirtualBox_CLEAN += $(VBOX_VIRTUALBOX 4_OUT_DIR)/VirtualBoxBrand.qrc1044 $(VBOX_VIRTUALBOX 4_OUT_DIR)/VirtualBoxBrand.qrc: \1045 $(VBOX_VIRTUALBOX 4_SRC)/VirtualBoxBrand.qrc \1046 VirtualBox_BLDDIRS += $(VBOX_VIRTUALBOX_OUT_DIR) 1047 VirtualBox_CLEAN += $(VBOX_VIRTUALBOX_OUT_DIR)/VirtualBoxBrand.qrc 1048 $(VBOX_VIRTUALBOX_OUT_DIR)/VirtualBoxBrand.qrc: \ 1049 $(VBOX_VIRTUALBOX_SRC)/VirtualBoxBrand.qrc \ 1046 1050 $(PATH_ROOT)/Config.kmk \ 1047 1051 | $$(dir $$@)
Note:
See TracChangeset
for help on using the changeset viewer.