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.
16 lines
348 B
Makefile
16 lines
348 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 = mpccut
|
|
mpccut_SOURCES = mpccut.c $(common_sources)
|
|
mpccut_LDADD = $(top_builddir)/libmpcenc/libmpcenc.a \
|
|
$(top_builddir)/libmpcdec/libmpcdec.la -lm
|