-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
69 lines (63 loc) · 3.01 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
### all of the standard pc files we need to generate
pcverfiles = \
gstreamer-audio-@[email protected] \
gstreamer-app-@[email protected] \
gstreamer-cdda-@[email protected] \
gstreamer-fft-@[email protected] \
gstreamer-floatcast-@[email protected] \
gstreamer-interfaces-@[email protected] \
gstreamer-netbuffer-@[email protected] \
gstreamer-pbutils-@[email protected] \
gstreamer-riff-@[email protected] \
gstreamer-rtp-@[email protected] \
gstreamer-rtsp-@[email protected] \
gstreamer-sdp-@[email protected] \
gstreamer-tag-@[email protected] \
gstreamer-video-@[email protected] \
gstreamer-plugins-base-@[email protected]
pcverfiles_uninstalled = \
gstreamer-audio-@[email protected] \
gstreamer-app-@[email protected] \
gstreamer-cdda-@[email protected] \
gstreamer-fft-@[email protected] \
gstreamer-floatcast-@[email protected] \
gstreamer-interfaces-@[email protected] \
gstreamer-netbuffer-@[email protected] \
gstreamer-pbutils-@[email protected] \
gstreamer-riff-@[email protected] \
gstreamer-rtp-@[email protected] \
gstreamer-rtsp-@[email protected] \
gstreamer-sdp-@[email protected] \
gstreamer-tag-@[email protected] \
gstreamer-video-@[email protected] \
gstreamer-plugins-base-@[email protected]
all-local: $(pcverfiles) $(pcverfiles_uninstalled)
cp_verbose = $(cp_verbose_$(V))
cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY))
cp_verbose_0 = @echo " CP $@";
### how to generate versioned .pc files from .pc files in this dir
%-@[email protected]: %.pc
$(cp_verbose_0)cp $< $@
%-@[email protected]: %-uninstalled.pc
$(cp_verbose_0)cp $< $@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(pcverfiles)
CLEANFILES = $(pcverfiles) $(pcverfiles_uninstalled)
pcinfiles = \
gstreamer-audio.pc.in gstreamer-audio-uninstalled.pc.in \
gstreamer-app.pc.in gstreamer-app-uninstalled.pc.in \
gstreamer-cdda.pc.in gstreamer-cdda-uninstalled.pc.in \
gstreamer-fft.pc.in gstreamer-fft-uninstalled.pc.in \
gstreamer-floatcast.pc.in gstreamer-floatcast-uninstalled.pc.in \
gstreamer-interfaces.pc.in gstreamer-interfaces-uninstalled.pc.in \
gstreamer-netbuffer.pc.in gstreamer-netbuffer-uninstalled.pc.in \
gstreamer-pbutils.pc.in gstreamer-pbutils-uninstalled.pc.in \
gstreamer-riff.pc.in gstreamer-riff-uninstalled.pc.in \
gstreamer-rtp.pc.in gstreamer-rtp-uninstalled.pc.in \
gstreamer-rtsp.pc.in gstreamer-rtsp-uninstalled.pc.in \
gstreamer-sdp.pc.in gstreamer-sdp-uninstalled.pc.in \
gstreamer-tag.pc.in gstreamer-tag-uninstalled.pc.in \
gstreamer-video.pc.in gstreamer-video-uninstalled.pc.in \
gstreamer-plugins-base.pc.in gstreamer-plugins-base-uninstalled.pc.in
DISTCLEANFILES = $(pcinfiles:.in=)
EXTRA_DIST = $(pcinfiles)