X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=Makefile;h=24b0af3067aab038547e7960e40616558f88e653;hb=refs%2Fchanges%2F69%2F4069%2F2;hp=12e8904c1112ebd328ad427e3c46230aef99af48;hpb=cfce8fa44378cb6843a8e9f5bb6aff8dd5fc5cf7;p=vpp.git diff --git a/Makefile b/Makefile index 12e8904c111..24b0af3067a 100644 --- a/Makefile +++ b/Makefile @@ -340,6 +340,10 @@ define banner endef verify: install-dep $(BR)/.bootstrap.ok + $(call banner,"Building for PLATFORM=vpp using gcc") + @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages + $(call banner,"Building for PLATFORM=vpp_lite using gcc") + @make -C build-root PLATFORM=vpp_lite TAG=vpp_lite wipe-all install-packages ifeq ($(OS_ID),ubuntu) ifeq ($(OS_VERSION_ID),16.04) $(call banner,"Installing dependencies") @@ -348,9 +352,12 @@ ifeq ($(OS_VERSION_ID),16.04) $(call banner,"Building for PLATFORM=vpp using clang") @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages endif + $(call banner,"Building deb packages") + @make pkg-deb endif - $(call banner,"Building for PLATFORM=vpp using gcc") - @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages - $(call banner,"Building for PLATFORM=vpp_lite using gcc") - @make -C build-root PLATFORM=vpp_lite TAG=vpp_lite wipe-all install-packages - @make test +ifeq ($(OS_ID),centos) + $(call banner,"Building rpm packages") + @make pkg-rpm +endif + +