mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
Please note that LDFLAGS is the _wrong_ variable to pass libraries with, automake tells you to use _LDADD for binaries and _LIBADD for libraries, while autoconf wants them in the LIBS variable. Signed-off-by: Diego 'Flameeyes' Pettenò <flameeyes@gmail.com>
13 lines
370 B
Makefile
13 lines
370 B
Makefile
AM_CFLAGS = @ECHOMIXER_CFLAGS@
|
|
bin_PROGRAMS = echomixer
|
|
man_MANS =
|
|
echomixer_SOURCES = echomixer.c
|
|
echomixer_LDADD = @ECHOMIXER_LIBS@
|
|
EXTRA_DIST = gitcompile configure.in-gtk1 configure.in-gtk2
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
alsa-dist: distdir
|
|
@rm -rf ../distdir/echomixer
|
|
@mkdir -p ../distdir/echomixer
|
|
@cp -RLpv $(distdir)/* ../distdir/echomixer
|
|
@rm -rf $(distdir)
|