]> git.sesse.net Git - ffmpeg/blobdiff - common.mak
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
[ffmpeg] / common.mak
index 0c08a59388a21fda5516ff2b58fd8c561f77878d..0961c1740f665408423a1e89f455066d3b419fd5 100644 (file)
@@ -59,20 +59,17 @@ install-libs: $(INSTLIBTARGETS)
 
 install-lib-shared: $(SLIBNAME)
        install -d "$(shlibdir)"
-ifeq ($(CONFIG_MINGW),yes)
-       install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
-else
        install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
-               $(shlibdir)/$(SLIBNAME_WITH_VERSION)
-       ln -sf $(SLIBNAME_WITH_VERSION) \
-              $(shlibdir)/$(SLIBNAME_WITH_MAJOR)
-       ln -sf $(SLIBNAME_WITH_VERSION) \
-              $(shlibdir)/$(SLIBNAME)
-endif
+               "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
+       cd "$(shlibdir)" && \
+               ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME_WITH_MAJOR)
+       cd "$(shlibdir)" && \
+               ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME)
 
 install-lib-static: $(LIB)
        install -d "$(libdir)"
        install -m 644 $(LIB) "$(libdir)"
+       $(LIB_INSTALL_EXTRA_CMD)
 
 install-headers:
        install -d "$(incdir)"
@@ -83,18 +80,14 @@ install-headers:
 uninstall: uninstall-libs uninstall-headers
 
 uninstall-libs:
-ifeq ($(CONFIG_MINGW),yes)
-       -rm -f $(prefix)/$(SLIBNAME)
-else
-       -rm -f $(shlibdir)/$(SLIBNAME_WITH_MAJOR) \
-              $(shlibdir)/$(SLIBNAME)            \
-              $(shlibdir)/$(SLIBNAME_WITH_VERSION)
-endif
-       -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"
 
 #
 # include dependency files if they exist