Browse Source

Remove `cargo update` from the Makefile

Updating the dependencies before each builds does not allow
reproductible builds.
pull/104/head
Rodolphe Bréard 6 months ago
parent
commit
0ebbac22eb
  1. 7
      Makefile

7
Makefile

@ -14,10 +14,7 @@ MAN_DST_DIR = $(TARGET_DIR)/man
FEATURES = openssl_dyn
all: update acmed tacd
update:
cargo update
all: acmed tacd
acmed: man_dir
if test -n "$(TARGET)"; then \
@ -64,4 +61,4 @@ install:
clean:
cargo clean
.PHONY: all update acmed tacd man_dir install clean
.PHONY: all acmed tacd man_dir install clean
Loading…
Cancel
Save