Inital commit
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user