mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:35:42 +01:00
14 lines
446 B
Makefile
14 lines
446 B
Makefile
INCLUDES=-I$(top_srcdir)/include
|
|
SUBDIRS=include alsactl alsamixer amixer aplay seq utils
|
|
EXTRA_DIST=ChangeLog INSTALL TODO README configure cvscompile depcomp
|
|
|
|
rpm: dist
|
|
$(MAKE) -C $@
|
|
|
|
dist-hook:
|
|
-chmod -R a+r $(distdir)
|
|
@if ! test -z "$(AMTAR)"; then \
|
|
$(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
|
|
else \
|
|
$(TAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
|
|
fi
|