blob: 0868c200616524a5c8e6158558de88c9fd04e95d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pcfiles = \
gst-streaming-server-@GST_API_VERSION@.pc
pcfiles_uninstalled = \
gst-streaming-server-@GST_API_VERSION@-uninstalled.pc
all-local: $(pcfiles) $(pcfiles_uninstalled)
### how to generate pc files
%-@GST_API_VERSION@.pc: %.pc
cp $< $@
%-@GST_API_VERSION@-uninstalled.pc: %-uninstalled.pc
cp $< $@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(pcfiles)
EXTRA_DIST = \
gst-streaming-server.pc.in \
gst-streaming-server.pc.in
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|