diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2026-04-03 00:48:51 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2026-04-03 00:48:51 -0400 |
| commit | 9e8a3eb08d2a3b87f26bac51af242b3e63e3469a (patch) | |
| tree | e754fdfbba64c2d125c667af0d7dc44db4cfb011 | |
| parent | ace2bbbd2411382d873580104a60ab0f1fe2bfa9 (diff) | |
| -rw-r--r-- | makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)" |
