mirror of
https://github.com/corda/corda.git
synced 2025-01-29 07:34:13 +00:00
find headers regardless of directory layout in vm-depends definition
This commit is contained in:
parent
41d84f7d5a
commit
fd047bd6e9
5
makefile
5
makefile
@ -939,7 +939,8 @@ generated-code = \
|
|||||||
$(build)/type-name-initializations.cpp \
|
$(build)/type-name-initializations.cpp \
|
||||||
$(build)/type-maps.cpp
|
$(build)/type-maps.cpp
|
||||||
|
|
||||||
vm-depends := $(generated-code) $(wildcard $(src)/*.h) $(wildcard $(src)/codegen/*.h) $(wildcard $(src)/codegen/compiler/*.h)
|
vm-depends := $(generated-code) \
|
||||||
|
$(shell find src include -name '*.h' -or -name '*.inc.cpp')
|
||||||
|
|
||||||
vm-sources = \
|
vm-sources = \
|
||||||
$(src)/$(system).cpp \
|
$(src)/$(system).cpp \
|
||||||
@ -1019,7 +1020,7 @@ heapwalk-sources = $(src)/heapwalk.cpp
|
|||||||
heapwalk-objects = \
|
heapwalk-objects = \
|
||||||
$(call cpp-objects,$(heapwalk-sources),$(src),$(build))
|
$(call cpp-objects,$(heapwalk-sources),$(src),$(build))
|
||||||
|
|
||||||
unittest-objects = $(call cpp-objects,$(unittest-sources),$(unittest),$(build)/unittest/)
|
unittest-objects = $(call cpp-objects,$(unittest-sources),$(unittest),$(build)/unittest)
|
||||||
|
|
||||||
ifeq ($(heapdump),true)
|
ifeq ($(heapdump),true)
|
||||||
vm-sources += $(src)/heapdump.cpp
|
vm-sources += $(src)/heapdump.cpp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user