#Set this to @ to keep the makefile quiet
SILENCE = @

#---- Outputs ----#
COMPONENT_NAME = CircularBuffer

#--- Inputs ----#
PROJECT_HOME_DIR = .

SRC_FILES = CircularBuffer.c

TEST_SRC_FILES = AllTests.cpp CircularBufferTest.cpp

CPPUTEST_OBJS_DIR = .
CPPUTEST_LIB_DIR = .

INCLUDE_DIRS =\
  .\
  $(CPPUTEST_HOME)/include/ \

include common.mk
