Imported Upstream version 0.3.17
[platform/upstream/liboil.git] / liboil / dct / Makefile.am
1
2 if USE_ALT_OPT
3 opt_libs = libdct_opt.la
4 else
5 opt_libs = 
6 endif
7
8 noinst_LTLIBRARIES = libdct.la $(opt_libs)
9
10 noinst_HEADERS = \
11         dct.h
12
13 c_sources = \
14         dct12_f32.c \
15         dct36_f32.c \
16         fdct8_f64.c \
17         fdct8x8_f64.c \
18         fdct8x8s_s16.c \
19         fdct8x8theora.c \
20         idct8_f64.c \
21         idct8x8_c.c \
22         imdct32_f32.c \
23         idct8x8theora_ref.c
24
25 libdct_la_SOURCES = \
26         $(c_sources) \
27         $(i386_sources) \
28         $(amd64_sources)
29
30 libdct_la_CFLAGS = $(LIBOIL_CFLAGS)
31 libdct_la_LIBADD = $(opt_libs)
32
33 libdct_opt_la_SOURCES = $(c_sources)
34 libdct_opt_la_CFLAGS = $(LIBOIL_CFLAGS) $(LIBOIL_OPT_CFLAGS)
35