blob: af1976b48c7fd315d530123fbaa3bb7177c6f187 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
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
|