diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dpdk/Makefile | 6 | ||||
-rw-r--r-- | src/mk/make-subsys.mk | 2 | ||||
-rw-r--r-- | src/ovs/Makefile | 6 |
3 files changed, 13 insertions, 1 deletions
diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile index 65a634b7..c6cc7bb1 100644 --- a/src/dpdk/Makefile +++ b/src/dpdk/Makefile @@ -50,6 +50,12 @@ clobber: cleanse: $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f +test: + @echo "Make test in $(WORK_DIR) (stub) " + +sanity: + @echo "Make sanity in $(WORK_DIR) (stub) " + $(WORK_DIR): $(AT)git clone $(DPDK_URL) diff --git a/src/mk/make-subsys.mk b/src/mk/make-subsys.mk index 6a616c3d..16a72715 100644 --- a/src/mk/make-subsys.mk +++ b/src/mk/make-subsys.mk @@ -12,7 +12,7 @@ .PHONY: $(SUBDIRS) -all clean cleanse clobber install uninstall: $(SUBDIRS) +all clean cleanse clobber install uninstall test sanity: $(SUBDIRS) $(AT)echo "finished making $@" $(SUBDIRS): diff --git a/src/ovs/Makefile b/src/ovs/Makefile index 9052d341..168939e6 100644 --- a/src/ovs/Makefile +++ b/src/ovs/Makefile @@ -66,6 +66,12 @@ clobber: cleanse: $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f +test: + @echo "Make test in $(WORK_DIR) (stub) " + +sanity: + @echo "Make sanity in $(WORK_DIR) (stub) " + .PHONY: boot # boot ovs is the process to produce the script 'configure' boot $(WORK_DIR)/configure: |