summaryrefslogtreecommitdiff
path: root/libs/videoscale/Makefile.am
blob: 64adf794e8d4734bb797f7df59f2714656ed0be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
filterdir = $(libdir)/gst

filter_LTLIBRARIES = libgstvideoscale.la

if HAVE_CPU_I386
SCALER = gstscale_x86.c gstscale_x86_asm.s
else
SCALER =
endif

libgstvideoscale_la_SOURCES = gstvideoscale.c $(SCALER)

libgstvideoscaleincludedir = $(includedir)/gst/libs/gstvideoscale
libgstvideoscaleinclude_HEADERS = gstvideoscale.h 

noinst_HEADERS = gstscale_x86.h

#CFLAGS += -S -O1 $(FOMIT_FRAME_POINTER) -funroll-all-loops -finline-functions -ffast-math
CFLAGS = $(GLIB_CFLAGS) $(LIBGST_CFLAGS) $(XML_CFLAGS) -O5 -fomit-frame-pointer -ffast-math