diff --git a/Makefile b/Makefile index 01652c2..41699e5 100644 --- a/Makefile +++ b/Makefile @@ -30,15 +30,15 @@ sign: ); \ gpg --armor \ --detach-sig \ - --output $(RELEASE_DIR)/manifest.$${fingerprint}.asc \ - $(RELEASE_DIR)/manifest.txt + --output $(DIST_DIR)/manifest.$${fingerprint}.asc \ + $(DIST_DIR)/manifest.txt .PHONY: verify -verify: | $(RELEASE_DIR)/manifest.txt +verify: | $(DIST_DIR)/manifest.txt set -e; \ - for file in $(RELEASE_DIR)/manifest.*.asc; do \ + for file in $(DIST_DIR)/manifest.*.asc; do \ echo "\nVerifying: $${file}\n"; \ - gpg --verify $${file} $(RELEASE_DIR)/manifest.txt; \ + gpg --verify $${file} $(DIST_DIR)/manifest.txt; \ done; .PHONY: mrproper