Inital commit

This commit is contained in:
2025-10-26 12:10:12 +01:00
commit 984f51b373
8 changed files with 174 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
include $(MAKE_HOME)/defaults.mk
# Environment
CC=clang
CCC=clang++
CXX=clang++
NAME := test_dsp_ringbuffer
CONFIG ?= debug
TARGET ?= $(NAME)
CXXFLAGS += -std=c++11
INCLUDES += -I $(realpath .) -I $(realpath ../public)
CXX_SRCS := test_ringbuffer.cpp
LIBS := -lstdc++
run: link
@echo Running $(TARGET)
@${BUILD_DIR}/${TARGET}
include $(MAKE_HOME)/compile.mk
include $(MAKE_HOME)/link.mk