Fix incremental build file deps (#7361)

The common src/hdr defs should be in the common definitions, not gpu specific.
This commit is contained in:
Daniel Hiltgen
2024-10-25 11:50:45 -07:00
committed by GitHub
parent 3085c47bea
commit 5231ae52d9
2 changed files with 6 additions and 7 deletions

View File

@@ -76,3 +76,9 @@ else
CP := cp -af
endif
COMMON_SRCS := \
$(wildcard *.c) \
$(wildcard *.cpp)
COMMON_HDRS := \
$(wildcard *.h) \
$(wildcard *.hpp)