blob: 66bd17e53a36927f515352a4b011c47facf15027 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include $(top_srcdir)/misc/Makefile.common
# -fomit-frame-pointer is always needed. it might cause debug to not
# work, but at least it compiles.
AM_CFLAGS = -fomit-frame-pointer -fno-strict-aliasing
AM_CPPFLAGS = $(LIBFFMPEG_CPPFLAGS) -I$(top_srcdir)/src/libffmpeg/libavcodec
# Avoid errors with -O0
postprocess.o postprocess.lo: CFLAGS=`echo @CFLAGS@ | sed -e 's/-O0\?\s/-Os /g'`
ASFLAGS =
noinst_LTLIBRARIES = libpostprocess.la
EXTRA_DIST = postprocess_template.c postprocess_altivec_template.c
libpostprocess_la_SOURCES = postprocess.c
noinst_HEADERS = mangle.h postprocess.h postprocess_internal.h
|