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.
 
 

21 lines
436 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_adc.cc \
main_memtest1.cc \
test_bla.c
SOURCES := $(wildcard *)
SOURCES := $(filter-out $(SRC_EXCLUDED), $(SOURCES))
include $(LIBDAISY_DIR)/core/Makefile