alsa-utils/aplay/Makefile.am
2001-12-30 09:36:26 +00:00

30 lines
567 B
Makefile

INCLUDES = -I$(top_srcdir)/include
LDADD = -lasound
# debug flags
#LDFLAGS = -static
#LDADD += -ldl
bin_PROGRAMS = aplay arecord
man_MANS = aplay.1 arecord.1
noinst_HEADERS = formats.h
EXTRA_DIST = aplay.1 arecord.1
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 $(DESTDIR)$(bindir)/arecord
(cd $(DESTDIR)$(bindir) && $(LN_S) aplay arecord)
install-data-hook:
rm -f $(DESTDIR)$(mandir)/man1/arecord.1
(cd $(DESTDIR)$(mandir)/man1 && $(LN_S) aplay.1 arecord.1)