4 changed files with 26 additions and 23 deletions
@ -1,18 +1,21 @@ |
|||
HERE:=$(dir $(lastword $(MAKEFILE_LIST))) |
|||
-include $(HERE)../Makefile.conf |
|||
include $(HERE)../Makefile.conf |
|||
|
|||
TARGET ?= main_blink |
|||
# do not create a static lib
|
|||
TARGET_LIB = |
|||
DEBUG ?= 0 |
|||
|
|||
LIBDIZZY_DIR ?= ../src/ |
|||
CXXFLAGS += -I$(LIBDIZZY_DIR) |
|||
LDFLAGS += -L$(LIBDIZZY_DIR)build/ |
|||
LDFLAGS += -L$(LIBDIZZY_DIR) |
|||
LDFLAGS += -ldizzy |
|||
|
|||
ALL_SRC = $(wildcard *.cc) |
|||
TARGET_SRC = $(TARGET).cc |
|||
MODULES_SRC = $(filter-out main_%,$(ALL_SRC)) |
|||
CXX_SRC = $(MODULES_SRC) $(TARGET_SRC) |
|||
SRC_EXCLUDED := \
|
|||
main_minimal.c \
|
|||
main_adc.cc \
|
|||
main_memtest1.cc \
|
|||
test_bla.c |
|||
|
|||
CXX_SOURCES = $(CXX_SRC) |
|||
SOURCES := $(wildcard *) |
|||
SOURCES := $(filter-out $(SRC_EXCLUDED), $(SOURCES)) |
|||
include $(LIBDAISY_DIR)/core/Makefile |
|||
|
@ -1,7 +1,5 @@ |
|||
HERE:=$(dir $(lastword $(MAKEFILE_LIST))) |
|||
-include $(HERE)../Makefile.conf |
|||
|
|||
ALL_SRC = $(wildcard *.cc) |
|||
CXX_SOURCES = $(ALL_SRC) |
|||
include $(HERE)../Makefile.conf |
|||
|
|||
SOURCES = $(wildcard *) |
|||
include $(LIBDAISY_DIR)/core/Makefile |
|||
|
Loading…
Reference in new issue