blob: 0af976c4cbb616495d9fced0bf25808107b15790 (
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
50
51
52
53
54
55
56
57
|
CFLAGS = @CFLAGS@
DEBUG_CFLAGS = @DEBUG_CFLAGS@
EXTRA_DIST = foovideo.c
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = xineplug_decode_cinepak.la xineplug_decode_cyuv.la \
xineplug_decode_msvc.la xineplug_decode_roqvideo.la \
xineplug_decode_svq1.la xineplug_decode_fli.la \
xineplug_decode_rgb.la xineplug_decode_yuv.la \
xineplug_decode_msrle.la
xineplug_decode_cinepak_la_SOURCES = cinepak.c
xineplug_decode_cinepak_la_LDFLAGS = -avoid-version -module
xineplug_decode_cyuv_la_SOURCES = cyuv.c
xineplug_decode_cyuv_la_LDFLAGS = -avoid-version -module
xineplug_decode_msvc_la_SOURCES = msvc.c
xineplug_decode_msvc_la_LDFLAGS = -avoid-version -module
xineplug_decode_roqvideo_la_SOURCES = roqvideo.c
xineplug_decode_roqvideo_la_LDFLAGS = -avoid-version -module
xineplug_decode_svq1_la_SOURCES = svq1.c svq1_codebooks.h
xineplug_decode_svq1_la_LDFLAGS = -avoid-version -module
xineplug_decode_fli_la_SOURCES = fli.c
xineplug_decode_fli_la_LDFLAGS = -avoid-version -module
xineplug_decode_rgb_la_SOURCES = rgb.c
xineplug_decode_rgb_la_LDFLAGS = -avoid-version -module
xineplug_decode_yuv_la_SOURCES = yuv.c
xineplug_decode_yuv_la_LDFLAGS = -avoid-version -module
xineplug_decode_msrle_la_SOURCES = msrle.c
xineplug_decode_msrle_la_LDFLAGS = -avoid-version -module
noinst_HEADERS = svq1_codebooks.h
debug:
@$(MAKE) CFLAGS="$(DEBUG_CFLAGS)"
install-debug: debug
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
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
|