Born on Stahl's Birthday.
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.
 
 

33 lines
696 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_adc_direct.cc \
main_memtest1.cc \
main_minimal.c \
main_cpuload.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