X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f850b2d6be8e065d523187f3514bb2a0a789353c..ae79c56ca79eea3ccd77c48951af9bcfc9474b1c:/openwrt/package/jpeg/Makefile?ds=inline diff --git a/openwrt/package/jpeg/Makefile b/openwrt/package/jpeg/Makefile index bcd7a65fc..11fd017a4 100644 --- a/openwrt/package/jpeg/Makefile +++ b/openwrt/package/jpeg/Makefile @@ -63,16 +63,16 @@ $(PKG_BUILD_DIR)/.built: $(IPKG_LIBJPEG): install -d -m0755 $(IDIR_LIBJPEG)/usr/lib - cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libjpeg.so.* $(IDIR_LIBJPEG)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libjpeg.so.* $(IDIR_LIBJPEG)/usr/lib/ $(RSTRIP) $(IDIR_LIBJPEG) $(IPKG_BUILD) $(IDIR_LIBJPEG) $(PACKAGE_DIR) $(STAGING_DIR)/usr/lib/libjpeg.so: $(PKG_BUILD_DIR)/.built mkdir -p $(STAGING_DIR)/usr/include - cp -fpR $(PKG_INSTALL_DIR)/usr/include/jpeglib.h $(STAGING_DIR)/usr/include/ - cp -fpR $(PKG_INSTALL_DIR)/usr/include/j{config,error,morecfg}.h $(STAGING_DIR)/usr/include/ + $(CP) $(PKG_INSTALL_DIR)/usr/include/jpeglib.h $(STAGING_DIR)/usr/include/ + $(CP) $(PKG_INSTALL_DIR)/usr/include/j{config,error,morecfg}.h $(STAGING_DIR)/usr/include/ mkdir -p $(STAGING_DIR)/usr/lib - cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libjpeg.{a,so*} $(STAGING_DIR)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libjpeg.{a,so*} $(STAGING_DIR)/usr/lib/ install-dev: $(STAGING_DIR)/usr/lib/libjpeg.so @@ -82,6 +82,6 @@ uninstall-dev: $(STAGING_DIR)/usr/include/j{config,error,morecfg}.h \ $(STAGING_DIR)/usr/lib/libjpeg.{a,so*} \ -compile: install-dev -clean: uninstall-dev +compile-targets: install-dev +clean-targets: uninstall-dev