alsa-utils/aplay/Makefile.am

29 lines
508 B
Makefile
Raw Normal View History

1999-01-30 20:12:34 +01:00
INCLUDES = -I$(top_srcdir)/include
LDADD = -lasound
2000-11-29 19:34:03 +01:00
# debug flags
#LDFLAGS = -static
#LDADD += -ldl
1999-01-30 20:12:34 +01:00
bin_PROGRAMS = aplay
2001-10-09 14:28:01 +02:00
man_MANS = aplay.1 arecord.1
1999-01-30 20:12:34 +01:00
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
2000-11-04 13:16:28 +01:00
(cd $(DESTDIR)$(bindir) && $(LN_S) aplay arecord)
1999-01-30 20:12:34 +01:00
install-data-hook:
rm -f $(mandir)/man1/arecord.1
2000-11-04 13:16:28 +01:00
(cd $(DESTDIR)$(mandir)/man1 && $(LN_S) aplay.1 arecord.1)