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.
20 lines
436 B
Makefile
20 lines
436 B
Makefile
EXTRA_DIST = CMakeLists.txt
|
|
|
|
bin_PROGRAMS = mpcchap
|
|
|
|
common_sources = ../common/tags.c ../common/crc32.c
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
if HAVE_VISIBILITY
|
|
AM_CFLAGS = -fvisibility=hidden
|
|
endif
|
|
|
|
METASOURCES = AUTO
|
|
mpcchap_SOURCES = dictionary.c iniparser.c mpcchap.c $(common_sources) \
|
|
dictionary.h iniparser.h
|
|
|
|
mpcchap_LDADD = $(top_builddir)/libmpcdec/libmpcdec.la \
|
|
$(top_builddir)/libmpcenc/libmpcenc.a \
|
|
-lm -lcuefile
|