vgmstream/test/Makefile.autotools.am
bnnm 166b9d411e Rename makefile.audacious to makefile.autotools, as now can build more
Not sure about the naming convention but hopefully clear enough
2018-01-04 22:59:07 +01:00

17 lines
412 B
Makefile

## vgmstream autotools script
bin_PROGRAMS = vgmstream-cli
if HAVE_LIBAO
bin_PROGRAMS += vgmstream123
endif
AM_CFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/ext_includes/ $(AO_CFLAGS)
AM_MAKEFLAGS = -f Makefile.autotools
vgmstream_cli_SOURCES = test.c
vgmstream_cli_LDADD = ../src/libvgmstream.la
vgmstream123_SOURCES = vgmstream123.c
vgmstream123_LDADD = ../src/libvgmstream.la $(AO_LIBS)