blob: febb2ee857d858c9ef4838a336a932feb82e82b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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 = $(LIBFFMPEG_CFLAGS) -I$(top_srcdir)/src/libffmpeg/libavcodec -fomit-frame-pointer
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
|