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:
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'