Fix makefile: .PHONY, @cmd to disable echoing, cd && cmd

This commit is contained in:
DarkCat09 2024-04-28 13:12:00 +04:00
parent 1fa4d3e8e5
commit 4865506dd3
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3

View file

@ -1,17 +1,17 @@
.PHONY: run test build frontend backend
run: run:
echo 'Not implemented' @echo 'Not implemented'
test: test:
python3 -m unittest discover -vcs ./backend @python3 -m unittest discover -vcs ./backend
build: build:
make frontend make frontend
make backend make backend
frontend: frontend:
cd ./frontend @cd frontend && echo 'Not implemented'
echo 'Not implemented'
backend: backend:
cd ./backend @cd backend && echo 'Not implemented'
echo 'Not implemented'