forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
48 lines (36 loc) · 817 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
44
45
46
47
48
if BUILD_RIMAGE
SUBDIRS = rimage
else
SUBDIRS = doc src
endif
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = version.sh
SRC_DIR = $(abs_top_builddir)/src
if BUILD_HOST
export ARCH_INCDIR = \
-I $(SRC_DIR)/arch/$(ARCH)/include
export SOF_INCDIR = \
-I $(SRC_DIR)/include
if BUILD_LIB
export PLATFORM_INCDIR = \
-I $(SRC_DIR)/library/include
endif
else
export SOF_INCDIR = \
-I $(SRC_DIR)/include \
-I $(ROOT_DIR)/include
export ARCH_INCDIR = \
-I $(SRC_DIR)/arch/$(ARCH)/include \
-I $(SRC_DIR)/arch/$(ARCH)/xtos
export PLATFORM_INCDIR = \
-I $(SRC_DIR)/platform/$(PLATFORM)/include
endif
dist-hook:
./version.sh $(top_srcdir)
cat .version > $(distdir)/.tarball-version
cat .version > $(distdir)/.version
doc-dummy:
doc: doc-dummy
$(MAKE) -C doc doc
all-local:
rm -f $(top_srcdir)/src/include/version.h