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.
17 lines
355 B
Makefile
17 lines
355 B
Makefile
EXTRA_DIST = CMakeLists.txt
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
if HAVE_VISIBILITY
|
|
AM_CFLAGS = -fvisibility=hidden
|
|
endif
|
|
|
|
common_sources = ../common/crc32.c
|
|
|
|
METASOURCES = AUTO
|
|
bin_PROGRAMS = mpc2sv8
|
|
mpc2sv8_SOURCES = mpc2sv8.c $(common_sources)
|
|
mpc2sv8_LDADD = -lm \
|
|
$(top_builddir)/libmpcdec/libmpcdec.la \
|
|
$(top_builddir)/libmpcenc/libmpcenc.a
|