diff options
author | Alan Pearce | 2023-07-09 15:09:25 +0200 |
---|---|---|
committer | Alan Pearce | 2023-07-09 15:09:25 +0200 |
commit | e391d96ab2087f0667d301514f28c4e77d275192 (patch) | |
tree | bdeee545ece22f6a1c4cc1dd808631068b0d61da /Makefile | |
parent | 05ba1a1e36136bf1febbea56ecb9662ed351899a (diff) | |
download | website-e391d96ab2087f0667d301514f28c4e77d275192.tar.lz website-e391d96ab2087f0667d301514f28c4e77d275192.tar.zst website-e391d96ab2087f0667d301514f28c4e77d275192.zip |
Remove unnecessary install target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile index f95bc49..53121cb 100644 --- a/Makefile +++ b/Makefile @@ -69,12 +69,10 @@ compress: .compressstamp .compressstamp: .formatstamp $(brotli_files) $(gzip_files) $(zstd_files) @touch .compressstamp -install: compress - deploy: .deploystamp .deploystamp: .compressstamp Caddyfile redis.Caddyfile Dockerfile fly.toml fly deploy @touch .deploystamp -.PHONY: all clean build format compress install deploy +.PHONY: all clean build format compress deploy |