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.

30 lines
705 B
Makefile

EXTRA_DIST = CMakeLists.txt
if HAVE_VISIBILITY
AM_CFLAGS = -fvisibility=hidden
endif
bin_PROGRAMS = mpcenc
common_sources = ../common/crc32.c \
../common/huffman-bcl.c \
../common/fastmath.c \
../common/tags.c
# set the include path found by configure
AM_CPPFLAGS = -I$(top_srcdir)/libmpcenc -I$(top_srcdir)/libmpcpsy \
-I$(top_srcdir)/include/ $(all_includes) \
-DTRUE=1 -DFALSE=0
# the library search path.
mpcenc_LDFLAGS = $(all_libraries)
mpcenc_SOURCES = keyboard.c mpcenc.c pipeopen.c stderr.c wave_in.c winmsg.c \
$(common_sources) \
mpcenc.h predict.h config.h
mpcenc_LDADD = -lm \
$(EXTRALIBS) \
$(top_builddir)/libmpcpsy/libmpcpsy.a \
$(top_builddir)/libmpcenc/libmpcenc.a