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.
31 lines
644 B
31 lines
644 B
HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
|
|
include $(HERE)../Makefile.conf
|
|
|
|
# do not create a static lib
|
|
TARGET_LIB =
|
|
DEBUG ?= 0
|
|
|
|
LIBDIZZY_DIR ?= ../src/
|
|
CXXFLAGS += -I$(LIBDIZZY_DIR)
|
|
LDFLAGS += -L$(LIBDIZZY_DIR)
|
|
LDFLAGS += -ldizzy
|
|
|
|
SRC_EXCLUDED := \
|
|
main_minimal.c \
|
|
main_memtest1.cc \
|
|
main_adc.cc \
|
|
main_blink.cc \
|
|
main_cli.cc \
|
|
main_density.cc \
|
|
main_framework_proto1.cc \
|
|
main_framework_proto2.cc \
|
|
main_memtest1.cc \
|
|
main_minimal.cc \
|
|
main_template_full.cc \
|
|
main_testtone.cc \
|
|
main_usbhost.cc \
|
|
|
|
|
|
SOURCES := $(wildcard *)
|
|
SOURCES := $(filter-out $(SRC_EXCLUDED), $(SOURCES))
|
|
include $(LIBDAISY_DIR)/core/Makefile
|
|
|