forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
119 lines (103 loc) · 2.46 KB
/
Makefile.am
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
NULL =
LIBVLC_SAMPLES = \
libvlc/gtk_player.c \
libvlc/QtPlayer/LICENSE \
libvlc/QtPlayer/main.cpp \
libvlc/QtPlayer/player.cpp \
libvlc/QtPlayer/player.h \
libvlc/QtPlayer/QtVLC.pro \
libvlc/QtGL/main.cpp \
libvlc/QtGL/qtvlcwidget.cpp \
libvlc/QtGL/qtvlcwidget.h \
libvlc/QtGL/QtGl.pro \
libvlc/thumbnailer.c \
libvlc/wx_player.cpp \
libvlc/d3d11_player.cpp \
libvlc/d3d9_player.c \
libvlc/win_player.c \
libvlc/CMakeLists.txt \
libvlc/appkit_player.m \
$(NULL)
# Check that samples that depends only on LibVLC can build
AUTOMAKE_OPTIONS = subdir-objects
AM_LDFLAGS = -no-install $(LDFLAGS_vlc) -L../src/ -lvlccore -L../lib -lvlc
samples_libvlc_example_SOURCES = libvlc/example.c
samples_libvlc_thumbnailer_SOURCES = libvlc/thumbnailer.c
check_PROGRAMS = \
samples_libvlc_example \
samples_libvlc_thumbnailer \
$(NULL)
nobase_doc_DATA = $(LIBVLC_SAMPLES)
doc_DATA = \
fortunes.txt \
$(NULL)
CHANGELOGS = \
ChangeLog-1999 \
ChangeLog-2000 \
ChangeLog-2001 \
ChangeLog-2002 \
ChangeLog-2003 \
ChangeLog-2004 \
ChangeLog-2005 \
ChangeLog-2006 \
ChangeLog-2007 \
ChangeLog-2008 \
ChangeLog-2009 \
ChangeLog-2010 \
ChangeLog-2011 \
ChangeLog-2012 \
ChangeLog-2013 \
ChangeLog-2014 \
ChangeLog-2015 \
ChangeLog-2016 \
ChangeLog-2017 \
ChangeLog-2018 \
ChangeLog-2019 \
ChangeLog-2020 \
ChangeLog-2021 \
ChangeLog-2022 \
ChangeLog-2023 \
ChangeLog-2024 \
$(NULL)
man1_MANS = \
vlc.1 \
vlc-wrapper.1
EXTRA_DIST = \
$(CHANGELOGS) \
$(man1_MANS) \
$(LIBVLC_SAMPLES) \
fortunes.txt \
release-howto.txt \
Doxyfile.in \
lirc/example.lircrc \
skins/skins-howto.txt \
skins/events-howto.txt \
skins/curve_maker/Bezier.bas \
skins/curve_maker/Bezier.frm \
skins/curve_maker/Bezier.frx \
skins/curve_maker/bezier.vbp \
skins/curve_maker/Bezier.vbw \
strings.txt \
translations.txt \
demo.sh \
doc_helper.sh \
$(NULL)
DISTCLEANFILES = Doxyfile
MAINTAINERCLEANFILES = $(CHANGELOGS)
Doxyfile: Doxyfile.in $(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status --file=$(subdir)/$@
doc: Doxyfile
doxygen
$(CHANGELOGS): Makefile.am
if test -e "$(top_srcdir)/.git"; then \
y="$@"; y="$${y##ChangeLog-}" ; \
git --git-dir="$(top_srcdir)/.git" log \
--since="$$y-01-01" \
--until="$$y-12-31 23:00:00 -0100" \
> "$@" ; \
fi
# This one needs to be rebuilt all the time :)
.PHONY: ChangeLog-2024 changelogs doc
changelogs: $(CHANGELOGS)
#distclean-hook:
# test "$(srcdir)" = "$(builddir)" || rm -f -- $(CHANGELOGS)