From 3e6834c325919e2d850c8a0d04c365dd2fe580ed Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 10 Sep 2024 01:52:04 +0200 Subject: [PATCH] Build: compile all .cc files --- src/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index d7d2565..5892962 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,9 +1,9 @@ include ../Makefile.conf - -SRC_CXX = main.cpp +CXX_SRC=$(wildcard *.cc) # libDaisy Makefile variables SYSTEM_FILES_DIR=$(LIBDAISY_DIR)/core -CPP_SOURCES=$(SRC_CXX) +CPP_SOURCES=$(CXX_SRC) + include $(SYSTEM_FILES_DIR)/Makefile