From 813b0dcfa85a0bcac16eff68ad527cf866a8accc Mon Sep 17 00:00:00 2001 From: Matthias Hannig Date: Wed, 20 Mar 2019 11:23:02 +0100 Subject: [PATCH] added test target to makefile --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 3899a60..8b5f333 100644 --- a/Makefile +++ b/Makefile @@ -102,7 +102,14 @@ remote_rpm: build_server dist scp $(BUILD_SERVER):$(RPM) $(LOCAL_RPMS)/. +.PHONY: test clean +test: + go test -v + cd endpoints/ && go test -v + cd bird/ && go test -v + clean: rm -f $(PROG)-osx-$(ARCH) rm -f $(PROG)-linux-$(ARCH) rm -rf $(DIST) +