musicdlp/Makefile

18 lines
261 B
Makefile
Raw Normal View History

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