Add hierarchy-file support to the DPDK headers, when invoking "make install-headers" headers will be installed in: $(DESTDIR)/usr/include/dpdk This hierarchy is based on: http://www.freedesktop.org/software/systemd/man/file-hierarchy.html
Signed-off-by: Mario Carrillo <mario.alfredo.c.arevalo at intel.com> --- mk/rte.sdkinstall.mk | 17 +++++++++++++++++ mk/rte.sdkroot.mk | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk index 86c98a5..3ec344e 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -40,7 +40,12 @@ endif # target name or a name containing jokers "*". Example: # x86_64-native-*-gcc ifndef T +ifeq (,$(wildcard $(BUILD_DIR)/build/.config)) T=* +else +INCLUDE_DIR := $(DESTDIR)/usr/include/dpdk +HSLINKS := $(wildcard $(RTE_OUTPUT)/include/*) +endif endif # @@ -72,6 +77,18 @@ install: $(INSTALL_TARGETS) echo "Using local configuration"; \ fi $(Q)$(MAKE) all O=$(BUILD_DIR)/$* +# +# install headers in /usr/include/dpdk +# +.PHONY: install-headers +install-headers: + @echo ================== Installing headers + @[ -d $(INCLUDE_DIR) ] || mkdir -p $(INCLUDE_DIR) + @for HSLINK in ${HSLINKS}; do \ + HEADER=$$(readlink -f $$HSLINK); \ + cp -rf $$HEADER ${INCLUDE_DIR}; \ + echo installing: $$HEADER; \ + done # # uninstall: remove all built sdk diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index e8423b0..8477a2b 100644 --- a/mk/rte.sdkroot.mk +++ b/mk/rte.sdkroot.mk @@ -97,8 +97,8 @@ test fast_test ring_test mempool_test perf_test coverage: testall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktestall.mk $@ -.PHONY: install uninstall -install uninstall: +.PHONY: install install-headers uninstall +install install-headers uninstall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@ .PHONY: doc help -- 2.1.0