mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
cosmetics: Use uppercase names for installation directories in makefiles.
Originally committed as revision 9776 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
+17
-17
@@ -70,37 +70,37 @@ install: install-libs install-headers
|
||||
install-libs: $(INSTLIBTARGETS)
|
||||
|
||||
install-lib-shared: $(SLIBNAME)
|
||||
install -d "$(shlibdir)"
|
||||
install -m 755 $(SLIBNAME) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
|
||||
$(STRIP) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
|
||||
cd "$(shlibdir)" && \
|
||||
install -d "$(SHLIBDIR)"
|
||||
install -m 755 $(SLIBNAME) "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)"
|
||||
$(STRIP) "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)"
|
||||
cd "$(SHLIBDIR)" && \
|
||||
ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME_WITH_MAJOR)
|
||||
cd "$(shlibdir)" && \
|
||||
cd "$(SHLIBDIR)" && \
|
||||
ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME)
|
||||
$(SLIB_INSTALL_EXTRA_CMD)
|
||||
|
||||
install-lib-static: $(LIB)
|
||||
install -d "$(libdir)"
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
install -d "$(LIBDIR)"
|
||||
install -m 644 $(LIB) "$(LIBDIR)"
|
||||
$(LIB_INSTALL_EXTRA_CMD)
|
||||
|
||||
install-headers:
|
||||
install -d "$(incdir)"
|
||||
install -d "$(libdir)/pkgconfig"
|
||||
install -m 644 $(addprefix $(SRC_DIR)/,$(HEADERS)) "$(incdir)"
|
||||
install -m 644 $(BUILD_ROOT)/lib$(NAME).pc "$(libdir)/pkgconfig"
|
||||
install -d "$(INCDIR)"
|
||||
install -d "$(LIBDIR)/pkgconfig"
|
||||
install -m 644 $(addprefix $(SRC_DIR)/,$(HEADERS)) "$(INCDIR)"
|
||||
install -m 644 $(BUILD_ROOT)/lib$(NAME).pc "$(LIBDIR)/pkgconfig"
|
||||
|
||||
uninstall: uninstall-libs uninstall-headers
|
||||
|
||||
uninstall-libs:
|
||||
-rm -f "$(shlibdir)/$(SLIBNAME_WITH_MAJOR)" \
|
||||
"$(shlibdir)/$(SLIBNAME)" \
|
||||
"$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
|
||||
-rm -f "$(libdir)/$(LIB)"
|
||||
-rm -f "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR)" \
|
||||
"$(SHLIBDIR)/$(SLIBNAME)" \
|
||||
"$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)"
|
||||
-rm -f "$(LIBDIR)/$(LIB)"
|
||||
|
||||
uninstall-headers::
|
||||
rm -f $(addprefix "$(incdir)/",$(HEADERS))
|
||||
rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
|
||||
rm -f $(addprefix "$(INCDIR)/",$(HEADERS))
|
||||
rm -f "$(LIBDIR)/pkgconfig/lib$(NAME).pc"
|
||||
|
||||
.PHONY: all depend dep clean distclean install* uninstall*
|
||||
|
||||
|
||||
Reference in New Issue
Block a user