From 4865506dd3424a99e9ff965992ed442380d9f855 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Sun, 28 Apr 2024 13:12:00 +0400 Subject: [PATCH] Fix makefile: .PHONY, @cmd to disable echoing, cd && cmd --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 42e1c3f..c985eba 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,17 @@ +.PHONY: run test build frontend backend + run: - echo 'Not implemented' + @echo 'Not implemented' test: - python3 -m unittest discover -vcs ./backend + @python3 -m unittest discover -vcs ./backend build: make frontend make backend frontend: - cd ./frontend - echo 'Not implemented' + @cd frontend && echo 'Not implemented' backend: - cd ./backend - echo 'Not implemented' + @cd backend && echo 'Not implemented'