blob: 2b7cd3e374eda3cf5159d48622c626ab61c2d897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = $(X_CFLAGS) -fno-omit-frame-pointer \
-Wmissing-prototypes -Wimplicit-function-declaration \
-DWIN32_PATH=\"@w32_path@\" -DNOAVIFILE_HEADERS \
-I$(srcdir)/.. -I$(srcdir)/../wine
if HAVE_W32DLL
dmo_filter_lib = libdmo_filter.la
endif
noinst_LTLIBRARIES = $(dmo_filter_lib)
libdmo_filter_la_SOURCES = \
buffer.c \
DMO_AudioDecoder.c \
dmo.c \
dmo_guids.c \
DMO_VideoDecoder.c
noinst_HEADERS = \
DMO_AudioDecoder.h \
dmo_guids.h \
dmo_interfaces.h \
DMO_Filter.h \
dmo.h \
DMO_VideoDecoder.h
|