File: Makefile.am

package info (click to toggle)
libmpc 2%3A0.1~r495-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,316 kB
  • ctags: 1,434
  • sloc: ansic: 13,302; makefile: 174
file content (20 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
EXTRA_DIST = CMakeLists.txt

bin_PROGRAMS = mpcchap

common_sources = ../common/tags.c ../common/crc32.c

AM_CPPFLAGS = -I$(top_srcdir)/include \
	$(LIBCUE_CFLAGS)

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 $(LIBCUE_LIBS)