aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index ab35497..5af28d0 100644
--- a/makefile
+++ b/makefile
@@ -11,7 +11,7 @@ atlas: $(SRC)
go build -tags "$(BUILD_TAGS)" -o $@ $<
test:
- go test -tags "$(BUILD_TAGS)" ./...
+ go test $(if $(subst undefined,,$(origin VIMRUNTIME)), -fullpath) -tags "$(BUILD_TAGS)" ./...
########
#
@@ -32,6 +32,7 @@ uninstall: $(INSTALL_PATH)/atlas
info:
@echo "SRC: $(SRC)"
@echo "BINS: $(BINS)"
+ @echo "TEST_BINS: $(TEST_BINS)"
@echo "INSTALL_PATH: $(INSTALL_PATH)"
@echo "BUILD_TAGS: $(BUILD_TAGS)"