mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
b24edc1633
Issue #1987, related also to issue #3163 and issue #3164.
30 lines
882 B
Makefile
30 lines
882 B
Makefile
include $(REP_DIR)/lib/mk/virtualbox5-common.inc
|
|
|
|
#
|
|
# Prevent inclusion of the Genode::Log definition after the vbox #define
|
|
# of 'Log'. Otherwise, the attempt 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/DrvVD.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 += Devices/Audio/DrvAudio.cpp
|
|
SRC_CC += Devices/Audio/DrvHostNullAudio.cpp
|
|
|
|
SRC_CC += network.cpp
|
|
SRC_CC += audio.cc
|
|
|
|
INC_DIR += $(VBOX_DIR)/Devices/Audio
|
|
INC_DIR += $(call select_from_repositories,src/lib/libc)
|
|
|
|
vpath network.cpp $(REP_DIR)/src/virtualbox5
|
|
vpath audio.cc $(REP_DIR)/src/virtualbox5
|
|
|
|
CC_CXX_WARN_STRICT =
|