blob: 688060d88206a70c9c1f861e5048ca4a27609d95 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
AM_CFLAGS = $(X_CFLAGS) -fno-omit-frame-pointer \
-Wmissing-prototypes -Wimplicit-function-declaration \
-DWIN32_PATH=\"@w32_path@\" -DNOAVIFILE_HEADERS \
-I$(srcdir)/.. -I$(srcdir)/../wine
#DEBUG_CFLAGS = @DEBUG_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
ds_filter_lib = libds_filter.la
endif
noinst_LTLIBRARIES = $(ds_filter_lib)
libds_filter_la_SOURCES = \
allocator.c \
cmediasample.c \
guids.c \
inputpin.c \
outputpin.c \
DS_Filter.c \
DS_AudioDecoder.c \
DS_VideoDecoder.c
noinst_HEADERS = \
allocator.h \
cmediasample.h \
guids.h \
inputpin.h \
interfaces.h \
iunk.h \
outputpin.h \
DS_AudioDecoder.h \
DS_Filter.h \
DS_VideoDecoder.h
debug:
@$(MAKE) CFLAGS="$(DEBUG_CFLAGS)"
mostlyclean-generic:
-rm -f *~ \#* .*~ .\#*
maintainer-clean-generic:
-@echo "This command is intended for maintainers to use;"
-@echo "it deletes files that may require special tools to rebuild."
-rm -f Makefile.in
|