Changeset 25729
- Timestamp:
- 2011-02-26T15:51:16+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
packages/libs/libxslt/Makefile
r18979 r25729 1 1 # 2 # Copyright (C) 2006-20 09OpenWrt.org2 # Copyright (C) 2006-2011 OpenWrt.org 3 3 # 4 4 # This is free software, licensed under the GNU General Public License v2. … … 69 69 TARGET_CFLAGS += $(FPIC) 70 70 71 define Build/InstallDev 72 $(INSTALL_DIR) $(1)/usr/bin $(2)/bin $(1)/usr/include/libxslt $(1)/usr/lib \ 71 define Build/InstallDev/Xslt 72 $(INSTALL_DIR) $(1)/usr/bin $(2)/bin $(1)/usr/include/libxslt \ 73 $(1)/usr/include/libexslt $(1)/usr/lib \ 73 74 $(1)/usr/lib/pkgconfig $(2)/share/aclocal 74 75 … … 100 101 endef 101 102 103 define Build/InstallDev/Exslt 104 $(INSTALL_DIR) $(1)/usr/include/libexslt $(1)/usr/lib/pkgconfig 105 $(INSTALL_DATA) \ 106 $(PKG_INSTALL_DIR)/usr/include/libexslt/* \ 107 $(1)/usr/include/libexslt/ 108 109 $(CP) \ 110 $(PKG_INSTALL_DIR)/usr/lib/libexslt.{la,a,so*} \ 111 $(1)/usr/lib/ 112 113 $(INSTALL_DATA) \ 114 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libexslt.pc \ 115 $(1)/usr/lib/pkgconfig/ 116 endef 117 118 define Build/InstallDev 119 $(if $(CONFIG_PACKAGE_libxslt),$(call Build/InstallDev/Xslt,$(1))) 120 $(if $(CONFIG_PACKAGE_libexslt),$(call Build/InstallDev/Exslt,$(1))) 121 endef 122 102 123 define Package/libxslt/install 103 124 $(INSTALL_DIR) $(1)/usr/lib
Note: See TracChangeset
for help on using the changeset viewer.