2024-04-28 13:12:00 +04:00
|
|
|
.PHONY: run test build frontend backend
|
|
|
|
|
2024-04-28 13:06:34 +04:00
|
|
|
run:
|
2024-04-28 13:12:00 +04:00
|
|
|
@echo 'Not implemented'
|
2024-04-28 13:06:34 +04:00
|
|
|
|
|
|
|
test:
|
2024-04-28 13:12:00 +04:00
|
|
|
@python3 -m unittest discover -vcs ./backend
|
2024-04-28 13:06:34 +04:00
|
|
|
|
|
|
|
build:
|
|
|
|
make frontend
|
|
|
|
make backend
|
|
|
|
|
|
|
|
frontend:
|
2024-04-28 13:12:00 +04:00
|
|
|
@cd frontend && echo 'Not implemented'
|
2024-04-28 13:06:34 +04:00
|
|
|
|
|
|
|
backend:
|
2024-04-28 13:12:00 +04:00
|
|
|
@cd backend && echo 'Not implemented'
|