spinlock: fix build with clang
[dpdk.git] / mk / rte.sdkbuild.mk
index 16c4101..2975ee4 100644 (file)
@@ -29,6 +29,8 @@
 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+# If DESTDIR variable is given, install binary dpdk
+
 #
 # include rte.vars.mk if config file exists
 #
@@ -59,6 +61,20 @@ CLEANDIRS = $(addsuffix _clean,$(ROOTDIRS-y) $(ROOTDIRS-n) $(ROOTDIRS-))
 .PHONY: build
 build: $(ROOTDIRS-y)
        @echo Build complete
+ifneq ($(DESTDIR),)
+       $(Q)mkdir -p $(DESTDIR)
+       $(Q)tar -C $(RTE_SDK) -cf - mk | tar -C $(DESTDIR) -x \
+         --keep-newer-files --warning=no-ignore-newer -f -
+       $(Q)mkdir -p $(DESTDIR)/`basename $(RTE_OUTPUT)`
+       $(Q)tar -C $(RTE_OUTPUT) -chf - \
+         --exclude app --exclude hostapp --exclude build \
+         --exclude Makefile --exclude .depdirs . | \
+         tar -C $(DESTDIR)/`basename $(RTE_OUTPUT)` -x --keep-newer-files \
+         --warning=no-ignore-newer -f -
+       $(Q)install -D $(RTE_OUTPUT)/app/testpmd \
+         $(DESTDIR)/`basename $(RTE_OUTPUT)`/app/testpmd
+       @echo Installation in $(DESTDIR) complete
+endif
 
 .PHONY: clean
 clean: $(CLEANDIRS)
@@ -68,7 +84,7 @@ clean: $(CLEANDIRS)
        @[ -d $(RTE_OUTPUT)/include ] || mkdir -p $(RTE_OUTPUT)/include
        @$(RTE_SDK)/scripts/gen-config-h.sh $(RTE_OUTPUT)/.config \
                > $(RTE_OUTPUT)/include/rte_config.h
-       $(Q)$(MAKE) -f $(RTE_SDK)/Makefile gcovclean
+       $(Q)$(MAKE) -f $(RTE_SDK)/GNUmakefile gcovclean
        @echo Clean complete
 
 .SECONDEXPANSION: