mirror of https://github.com/thesofproject/sof.git
27 lines
514 B
Makefile
27 lines
514 B
Makefile
SUBDIRS = src
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = version.sh
|
|
|
|
SRC_DIR = $(abs_top_builddir)/src
|
|
|
|
export REEF_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
|
|
|
|
dist-hook:
|
|
./version.sh $(top_srcdir)
|
|
cat .version > $(distdir)/.tarball-version
|
|
cat .version > $(distdir)/.version
|
|
|
|
all-local:
|
|
rm -f $(top_srcdir)/src/include/version.h
|