mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 17:01:07 +00:00
f02e9001e8
Express that the target binary files depend on the generated files not the source files. The old expression seems to confuse Make, which then logs a bogus error like the following COMPILE Runtime/common/err/errmsg.o genode-x86-g++: error: Runtime/common/err/errmsg.cpp: No such file or directory genode-x86-g++: fatal error: no input files compilation terminated. make[2]: *** [Runtime/common/err/errmsg.o] Error 1 make[1]: *** [virtualbox-runtime.lib] Error 2
121 lines
5.0 KiB
Makefile
121 lines
5.0 KiB
Makefile
include $(REP_DIR)/lib/mk/virtualbox-common.inc
|
|
|
|
INC_DIR += $(VBOX_DIR)/Runtime/include
|
|
|
|
INC_DIR += $(VIRTUALBOX_DIR)/src/libs/liblzf-3.4
|
|
INC_DIR += $(VIRTUALBOX_DIR)/src/libs/zlib-1.2.6
|
|
|
|
GENERIC_SRC_CC = $(notdir $(wildcard $(VBOX_DIR)/Runtime/generic/*.cpp))
|
|
|
|
FILTERED_OUT_SRC_CC = RTLogDefaultInit-generic.cpp \
|
|
RTTimeLocalExplode-generic.cpp \
|
|
semrw-lockless-generic.cpp \
|
|
tls-generic.cpp \
|
|
RTSemEventMultiWait-2-ex-generic.cpp \
|
|
RTLogWriteStdErr-generic.cpp \
|
|
RTLogWriteStdOut-generic.cpp \
|
|
RTMpGetDescription-generic-stub.cpp \
|
|
RTSemEventWait-2-ex-generic.cpp \
|
|
RTSemEventWait-generic.cpp \
|
|
RTSemEventWaitNoResume-2-ex-generic.cpp \
|
|
RTFileExists-generic.cpp \
|
|
RTSemMutexRequest-generic.cpp \
|
|
RTSemMutexRequestDebug-generic.cpp
|
|
|
|
CC_WARN += -Wno-unused-variable
|
|
|
|
SRC_CC += Runtime/common/log/logrel.cpp \
|
|
Runtime/r3/init.cpp \
|
|
Runtime/common/misc/thread.cpp \
|
|
$(addprefix Runtime/generic/,$(filter-out $(FILTERED_OUT_SRC_CC), $(GENERIC_SRC_CC)))
|
|
|
|
SRC_CC += Runtime/common/err/RTErrConvertFromErrno.cpp
|
|
SRC_CC += Runtime/common/alloc/memcache.cpp
|
|
SRC_CC += Runtime/common/checksum/md5.cpp
|
|
SRC_CC += Runtime/common/log/log.cpp
|
|
SRC_CC += Runtime/common/log/log.cpp
|
|
SRC_CC += Runtime/common/log/logellipsis.cpp
|
|
SRC_CC += Runtime/common/log/logrelellipsis.cpp
|
|
SRC_CC += Runtime/common/log/logformat.cpp
|
|
SRC_CC += Runtime/common/misc/assert.cpp
|
|
SRC_CC += Runtime/common/misc/lockvalidator.cpp
|
|
SRC_CC += Runtime/common/misc/once.cpp
|
|
SRC_CC += Runtime/common/misc/sg.cpp
|
|
SRC_CC += Runtime/common/misc/term.cpp
|
|
SRC_CC += Runtime/common/misc/RTAssertMsg1Weak.cpp
|
|
SRC_CC += Runtime/common/misc/RTAssertMsg2AddWeak.cpp
|
|
SRC_CC += Runtime/common/misc/RTAssertMsg2AddWeakV.cpp
|
|
SRC_CC += Runtime/common/misc/RTAssertMsg2Weak.cpp
|
|
SRC_CC += Runtime/common/misc/RTAssertMsg2WeakV.cpp
|
|
SRC_CC += Runtime/common/path/RTPathAbsDup.cpp
|
|
SRC_CC += Runtime/common/path/RTPathCalcRelative.cpp
|
|
SRC_CC += Runtime/common/path/RTPathExt.cpp
|
|
SRC_CC += Runtime/common/path/RTPathFilename.cpp
|
|
SRC_CC += Runtime/common/path/RTPathJoinA.cpp
|
|
SRC_CC += Runtime/common/path/RTPathParse.cpp
|
|
SRC_CC += Runtime/common/path/RTPathStripExt.cpp
|
|
SRC_CC += Runtime/common/path/RTPathStripFilename.cpp
|
|
SRC_CC += Runtime/common/path/RTPathStripTrailingSlash.cpp
|
|
SRC_CC += Runtime/common/rand/rand.cpp
|
|
SRC_CC += Runtime/common/rand/randadv.cpp
|
|
SRC_CC += Runtime/common/rand/randparkmiller.cpp
|
|
SRC_CC += Runtime/common/zip/zip.cpp
|
|
SRC_CC += Runtime/common/string/base64.cpp
|
|
SRC_CC += Runtime/common/string/RTStrCmp.cpp
|
|
SRC_CC += Runtime/common/string/RTStrCopy.cpp
|
|
SRC_CC += Runtime/common/string/RTStrCopyEx.cpp
|
|
SRC_CC += Runtime/common/string/RTStrNCmp.cpp
|
|
SRC_CC += Runtime/common/string/RTStrNLen.cpp
|
|
SRC_CC += Runtime/common/string/simplepattern.cpp
|
|
SRC_CC += Runtime/common/string/straprintf.cpp
|
|
SRC_CC += Runtime/common/string/strformat.cpp
|
|
SRC_CC += Runtime/common/string/strformatrt.cpp
|
|
SRC_CC += Runtime/common/string/strformattype.cpp
|
|
SRC_CC += Runtime/common/string/stringalloc.cpp
|
|
SRC_CC += Runtime/common/string/strprintf.cpp
|
|
SRC_CC += Runtime/common/string/strstrip.cpp
|
|
SRC_CC += Runtime/common/string/strtonum.cpp
|
|
SRC_CC += Runtime/common/string/unidata.cpp
|
|
SRC_CC += Runtime/common/string/utf-16.cpp
|
|
SRC_CC += Runtime/common/string/utf-8-case.cpp
|
|
SRC_CC += Runtime/common/string/utf-8.cpp
|
|
SRC_CC += Runtime/common/table/avlpv.cpp
|
|
SRC_CC += Runtime/common/table/avlroioport.cpp
|
|
SRC_CC += Runtime/common/table/avlrogcphys.cpp
|
|
SRC_CC += Runtime/common/time/time.cpp
|
|
SRC_CC += Runtime/common/time/timeprog.cpp
|
|
SRC_CC += Runtime/common/time/timesup.cpp
|
|
SRC_CC += Runtime/common/time/timesupref.cpp
|
|
SRC_CC += Runtime/r3/alloc.cpp
|
|
SRC_CC += Runtime/r3/fileio.cpp
|
|
SRC_CC += Runtime/r3/path.cpp
|
|
SRC_CC += Runtime/r3/generic/semspinmutex-r3-generic.cpp
|
|
SRC_CC += Runtime/r3/posix/env-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/fileio-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/pipe-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/poll-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/RTTimeNow-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/semeventmulti-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/semevent-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/semmutex-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/thread2-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/thread-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/time-posix.cpp
|
|
SRC_CC += Runtime/r3/posix/tls-posix.cpp
|
|
SRC_CC += Runtime/r3/process.cpp
|
|
SRC_CC += Runtime/r3/stream.cpp
|
|
SRC_CC += Runtime/VBox/log-vbox.cpp
|
|
SRC_S += Runtime/common/asm/ASMAtomicCmpXchgU64.asm
|
|
SRC_S += Runtime/common/asm/ASMAtomicReadU64.asm
|
|
SRC_S += Runtime/common/asm/ASMAtomicUoReadU64.as
|
|
SRC_S += Runtime/common/asm/ASMAtomicXchgU64.asm
|
|
|
|
SRC_CC += Runtime/common/err/errmsg.cpp
|
|
Runtime/common/err/errmsg.o: errmsgdata.h
|
|
|
|
errmsgdata.h: $(VIRTUALBOX_DIR)/include/iprt/err.h \
|
|
$(VIRTUALBOX_DIR)/include/VBox/err.h
|
|
$(MSG_CONVERT)$@
|
|
$(VERBOSE)sed -f $(VBOX_DIR)/Runtime/common/err/errmsg.sed $^ > $@
|
|
|