From 2e5c531ff19b568321ac4145054baa8868e95a99 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sat, 10 Mar 2018 11:41:27 -0600 Subject: [PATCH] Add `test` and `run` rules to BSDmakefile --- BSDmakefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BSDmakefile b/BSDmakefile index 8ec93fb5e..56a65bd97 100644 --- a/BSDmakefile +++ b/BSDmakefile @@ -34,3 +34,11 @@ install: build/fish .PHONY: clean clean: rm -rf build + +.PHONY: test +test: build/fish + cmake --build build --target test + +.PHONY: run +run: build/fish + build/fish