-
Notifications
You must be signed in to change notification settings - Fork 17
/
Makefile.am
44 lines (29 loc) · 896 Bytes
/
Makefile.am
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
# As suggested by libtoolize
ACLOCAL_AMFLAGS = -I config
include aminclude.am
AM_CFLAGS = -Wall -Werror
WARNING_CFLAGS = -Wall -Wformat -W -Werror
WARNING_CXXFLAGS = -fvisibility-inlines-hidden
# Code Under Test
##################################################
BUILD_FLAGS = -I boardcfg \
-I tests/system_config \
-I tests/harmony/include \
-I firmware/src \
-I common \
-I Bootloader/firmware/src \
$(WARNING_CFLAGS)
noinst_PROGRAMS =
noinst_LTLIBRARIES =
TESTS =
###################
if BUILD_UNIT_TESTS
include Bootloader/firmware/src/Makefile.mk
include firmware/src/Makefile.mk
include tests/Makefile.mk
endif
include tools/Makefile.mk
include user_manual/Makefile.mk
check_PROGRAMS = $(TESTS)
doc-gen: user_manual/pid_gen/pid_gen
./user_manual/pid_gen/pid_gen --output-dir user_manual/gen