-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
52 lines (44 loc) · 1015 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#---------
#
# CppUTest Examples Makefile
#
#----------
#Set this to @ to keep the makefile quiet
ifndef SILENCE
SILENCE = @
endif
#--- Inputs ----#
COMPONENT_NAME = axon
CPPUTEST_HOME = ~/src/upstream/cpputest
CPPUTEST_USE_EXTENSIONS = Y
CPPUTEST_WARNINGFLAGS = -Wall
CPP_PLATFORM = Gcc
PLATFORM = gcc
# This line is overriding the default new macros. This is helpful
# when using std library includes like <list> and other containers
# so that memory leak detection does not conflict with stl.
#CPPUTEST_MEMLEAK_DETECTOR_NEW_MACRO_FILE = -include ApplicationLib/ExamplesNewOverrides.h
SRC_DIRS = \
src\
src/Stream
#src/ABFFIO\
#src/AxAbfFio32\
#src/AxAtfFio32\
#src/AxoUtils32\
#src/AxonValidation\
#src/Common
TEST_SRC_DIRS = \
test
INCLUDE_DIRS =\
.\
src\
src/Stream\
src/ABFFIO\
src/AxAbfFio32\
src/AxAtfFio32\
src/AxoUtils32\
src/AxonValidation\
src/Common\
src/platforms/$(PLATFORM)\
$(CPPUTEST_HOME)/include
include $(CPPUTEST_HOME)/build/MakefileWorker.mk