From 518fb78077fb086822bb6a65ef8ed1a48a88de10 Mon Sep 17 00:00:00 2001 From: Diego Herranz Date: Fri, 2 Aug 2019 06:42:44 +0100 Subject: [PATCH] Makefile: add .PHONY targets Given all the targets are actions instead of files to be generated, .PHONY should be used, mainly to avoid a conflict with a file of the same name. See https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85acd5850c..dda44c9a03 100644 --- a/Makefile +++ b/Makefile @@ -45,4 +45,6 @@ documentation: backup: python3 InvenTree/manage.py dbbackup - python3 InvenTree/manage.py mediabackup \ No newline at end of file + python3 InvenTree/manage.py mediabackup + +.PHONY: clean migrate requirements secret superuser install style test coverage documentation backup \ No newline at end of file