You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
444 B
18 lines
444 B
include ../Makefile.conf
|
|
|
|
ALL_SRC=$(wildcard *.cc)
|
|
TARGET_SRC=main_$(TARGET).cc
|
|
MODULES_SRC=$(filter-out main_%,$(ALL_SRC))
|
|
CXX_SRC=$(MODULES_SRC) $(TARGET_SRC)
|
|
|
|
$(info CXXFLAGS: $(CXXFLAGS))
|
|
$(info SOURCES: $(ALL_SRC))
|
|
$(info MODULES: $(MODULES_SRC))
|
|
$(info TARGET_SRC: $(TARGET_SRC))
|
|
$(info CXX_SRC: $(CXX_SRC))
|
|
|
|
# libDaisy Makefile variables
|
|
SYSTEM_FILES_DIR=$(LIBDAISY_DIR)/core
|
|
CPP_SOURCES=$(CXX_SRC)
|
|
|
|
include $(SYSTEM_FILES_DIR)/Makefile
|
|
|