You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
332 B
Makefile
15 lines
332 B
Makefile
EXTRA_DIST = CMakeLists.txt
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/libwavformat -I$(top_srcdir)/include
|
|
|
|
if HAVE_VISIBILITY
|
|
AM_CFLAGS = -fvisibility=hidden
|
|
endif
|
|
|
|
METASOURCES = AUTO
|
|
bin_PROGRAMS = mpcdec
|
|
mpcdec_SOURCES = mpcdec.c
|
|
mpcdec_LDADD = -lm \
|
|
$(top_builddir)/libmpcdec/libmpcdec.la \
|
|
$(top_builddir)/libwavformat/libwavformat.a
|