aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b528e2a..75566a2 100644
--- a/Makefile
+++ b/Makefile
@@ -48,6 +48,8 @@ help:
@echo " build-vcl - build vcl vpp and vcl nginx"
@echo " deb-ldp - build ldp DEB package"
@echo " build-ldp - build ldp vpp and ldp nginx"
+ @echo " verify-vcl - verify vcl starts properly"
+ @echo " verify-ldp - verify ldp starts properly"
@echo " clean - clean up build environment."
@echo " clean-vcl - clean up build vcl environment."
@echo " clean-ldp - clean up build ldp environment."
@@ -85,13 +87,20 @@ build-vcl: $(BR)/.deps.ok openssl-dl nginx-dl openssl-build vpp_vcl-build nginx_
.PHONY: build-ldp
build-ldp: $(BR)/.deps.ok openssl-dl nginx-dl openssl-build vpp_ldp-build nginx_ldp-build
-
.PHONY: deb-vcl
deb-vcl: build-vcl openssl-deb vpp_vcl-deb nginx_vcl-deb
.PHONY: deb-ldp
deb-ldp: build-ldp openssl-deb vpp_ldp-deb nginx_ldp-deb
+.PHONY: verify-vcl
+verify-vcl: build-vcl
+ @./packages/verify.sh vcl
+
+.PHONY: verify-ldp
+verify-ldp: build-ldp
+ @./packages/verify.sh ldp
+
.PHONY: dep
dep:
ifeq ($(OS_ID),ubuntu)