mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
366bba0227
This is a follow-up commit to "Increase default warning level", which overrides Genode's new default warning level for targets contained in higher-level repositories. By explicitly whitelisting all those targets, we can selectively adjust them to the new strictness over time - by looking out for 'CC_CXX_WARN_STRICT' in the target description files. Issue #465
30 lines
866 B
Makefile
30 lines
866 B
Makefile
include $(REP_DIR)/lib/mk/virtualbox-common.inc
|
|
|
|
#
|
|
# Prevent inclusion of the Genode::Log definition after the vbox #define
|
|
# of 'Log'. Otherwise, the attemt to compile base/log.h will fail.
|
|
#
|
|
VBOX_CC_OPT += -include base/log.h
|
|
|
|
SRC_CC += Devices/Input/DrvKeyboardQueue.cpp
|
|
SRC_CC += Devices/Input/DrvMouseQueue.cpp
|
|
SRC_CC += Devices/USB/DrvVUSBRootHub.cpp
|
|
SRC_CC += Devices/Storage/DrvBlock.cpp
|
|
SRC_CC += Devices/Storage/DrvMediaISO.cpp
|
|
SRC_CC += Devices/Storage/DrvVD.cpp
|
|
SRC_CC += Devices/Storage/DrvRawImage.cpp
|
|
SRC_CC += Devices/PC/DrvACPI.cpp
|
|
SRC_CC += Devices/Serial/DrvChar.cpp
|
|
SRC_CC += Devices/Serial/DrvRawFile.cpp
|
|
SRC_CC += Devices/Serial/DrvHostSerial.cpp
|
|
|
|
SRC_CC += audiodrv.cpp
|
|
SRC_CC += network.cpp
|
|
|
|
INC_DIR += $(VBOX_DIR)/Devices/Audio
|
|
|
|
vpath audiodrv.cpp $(REP_DIR)/src/virtualbox
|
|
vpath network.cpp $(REP_DIR)/src/virtualbox
|
|
|
|
CC_CXX_WARN_STRICT =
|