Changeset 473906a052f21523a3fe450f4664f247f72b3d9e
- Timestamp:
- 03/19/08 19:59:09
(5 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1205953149 +0200
- git-parent:
[b321beb4ac88fb3d032b0f0132a8ce7348b52f89]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1205953149 +0200
- Message:
pkg-config for the plugin API
(Don't expect this to work yet though)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r484c931 |
r473906a |
|
| 10 | 10 | BUILT_SOURCES = modules/builtin.h misc/revision.c ../include/vlc_about.h |
|---|
| 11 | 11 | CLEANFILES = $(BUILT_SOURCES) |
|---|
| | 12 | |
|---|
| | 13 | SUFFIXES = .pc.in .pc |
|---|
| 12 | 14 | |
|---|
| 13 | 15 | ############################################################################### |
|---|
| … | … | |
| 135 | 137 | |
|---|
| 136 | 138 | pkgconfigdir = $(libdir)/pkgconfig |
|---|
| 137 | | pkgconfig_DATA = vlc-control.pc |
|---|
| | 139 | pkgconfig_DATA = vlc-control.pc vlc-plugin.pc |
|---|
| 138 | 140 | CLEANFILES += $(pkgconfig_DATA) |
|---|
| 139 | 141 | |
|---|
| … | … | |
| 141 | 143 | cd $(top_builddir) && \ |
|---|
| 142 | 144 | $(SHELL) ./config.status --file=src/vlc-control.pc |
|---|
| | 145 | |
|---|
| | 146 | .pc.in.pc: $(top_builddir)/config.status |
|---|
| | 147 | cd "$(top_builddir)" && \ |
|---|
| | 148 | $(SHELL) ./config.status --file="src/$@" |
|---|
| 143 | 149 | |
|---|
| 144 | 150 | ############################################################################### |
|---|