mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-05 04:06:34 -05:00
The dist-hook is not required for latest automake. It was introduced in 2000, so the things were hopefully fixed now. Signed-off-by: Jaroslav Kysela <perex@perex.cz>
30 lines
624 B
Makefile
30 lines
624 B
Makefile
# remove -h for tar (follow symlinks) to avoid endless include/alsa/alsa/...
|
|
am__tar = $${TAR-tar} cof - "$$tardir"
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS=doc include src
|
|
if BUILD_TOPOLOGY
|
|
SUBDIRS += src/topology
|
|
endif
|
|
if BUILD_MODULES
|
|
SUBDIRS += modules
|
|
endif
|
|
if BUILD_PCM_PLUGIN_SHM
|
|
SUBDIRS += aserver
|
|
endif
|
|
SUBDIRS += test utils
|
|
EXTRA_DIST=README.md ChangeLog INSTALL TODO NOTES configure gitcompile libtool \
|
|
depcomp version MEMORY-LEAK m4/attributes.m4
|
|
AUTOMAKE_OPTIONS=foreign
|
|
|
|
AM_CPPFLAGS=-I$(top_srcdir)/include
|
|
|
|
rpm: dist
|
|
$(MAKE) -C utils rpm
|
|
|
|
doc-dummy:
|
|
|
|
doc: doc-dummy
|
|
$(MAKE) -C include all
|
|
$(MAKE) -C doc doc
|