mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 14:48:25 +01:00
24 lines
449 B
Makefile
24 lines
449 B
Makefile
INCLUDES = -I$(top_srcdir)/include
|
|
LDADD = -lasound
|
|
|
|
bin_PROGRAMS = aplay
|
|
man_MANS = aplay.1
|
|
noinst_HEADERS = formats.h
|
|
|
|
EXTRA_CLEAN = arecord
|
|
|
|
arecord: aplay
|
|
rm -f arecord
|
|
$(LN_S) $< $@
|
|
|
|
arecord.1: aplay.1
|
|
rm -f arecord.1
|
|
$(LN_S) $< $@
|
|
|
|
install-exec-hook:
|
|
rm -f $(bindir)/arecord
|
|
(cd $(DESTDIR)$(bindir) && $(LN_S) aplay arecord)
|
|
|
|
install-data-hook:
|
|
rm -f $(mandir)/man1/arecord.1
|
|
(cd $(DESTDIR)$(mandir)/man1 && $(LN_S) aplay.1 arecord.1)
|