From 521f3ec33ba35bd8ba8a6f5da3fded142c589b88 Mon Sep 17 00:00:00 2001 From: creme Date: Thu, 2 Sep 2021 12:07:46 +0000 Subject: [PATCH] Delete 'Makefile' --- Makefile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 116bf06e..00000000 --- a/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -DEST_DIR ?= /var/lib/pleroma/static -DEST_OWNER ?= pleroma -DEST_GROUP ?= pleroma - -STATIC_FILES != find . -path "./static/*" -type f -DEST_FILES := $(subst ./static/,$(DEST_DIR),$(BANFILES)) - -install: - $(info updating from git remote) - @git fetch - @git reset --hard origin/master - $(info installing new banfiles) - @install -o $(DEST_OWNER) -g $(DEST_GROUP) -m 644 $(STATIC_FILES) $(DEST_DIR) - -uninstall: - $(info uninstall banfiles) - @rm -v $(DEST_FILES) - -.PHONY: install uninstall