aboutsummaryrefslogtreecommitdiffstats
path: root/mediaplugin/src/plugins/media/ffmpeg/Makefile.am
blob: 7f38d2f63f964e7e97803163d74b362ed4c0c83d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
lib_LTLIBRARIES = libffmpegplugin.la
libffmpegplugin_la_SOURCES = ../core/plugin_core.cpp ../core/util.cpp ../core/logger.cpp ffmpeg_core.cpp ffmpeg_audio_convert.cpp ffmpeg_audio_decode.cpp ffmpeg_video_decode.cpp ffmpeg_plugin.cpp
libffmpegplugin_la_CXXFLAGS = -I../include -Wall \
	$(ffmpeg_CFLAGS) \
	$(libswscale_CFLAGS)
libffmpegplugin_la_LDFLAGS = -shared -dynamic -avoid-version \
	$(ffmpeg_LIBS) \
	$(libswscale_LIBS) \
	$(LDFLAGS)

compile: libffmpegplugin.la
	cp .libs/libffmpegplugin$(LIB_EXT) $(PLUGIN_DIR)