Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-01-19 07:40:13 +0300
committerMåns Rullgård <mans@mansr.com>2010-01-19 07:40:13 +0300
commitaa310a9fc734344b1187282f12d63e1eaefaa88c (patch)
tree83c8d5dce4ab5705524a6785550515d929e25e62 /subdir.mak
parentdf642790791808bf9aca245bac213b0f97ec6583 (diff)
Add rules to install generated headers
Originally committed as revision 21320 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'subdir.mak')
-rw-r--r--subdir.mak3
1 files changed, 3 insertions, 0 deletions
diff --git a/subdir.mak b/subdir.mak
index e0ac6810b6..8bcf134258 100644
--- a/subdir.mak
+++ b/subdir.mak
@@ -80,6 +80,9 @@ install-headers::
install -d "$(INCINSTDIR)"
install -d "$(LIBDIR)/pkgconfig"
install -m 644 $(addprefix "$(SRC_DIR)"/,$(HEADERS)) "$(INCINSTDIR)"
+ifdef BUILT_HEADERS
+ install -m 644 $(addprefix $(SUBDIR),$(BUILT_HEADERS)) "$(INCINSTDIR)"
+endif
install -m 644 $(BUILD_ROOT)/lib$(NAME)/lib$(NAME).pc "$(LIBDIR)/pkgconfig"
endef