17 lines
261 B
Makefile
17 lines
261 B
Makefile
.PHONY: run test build frontend backend
|
|
|
|
run:
|
|
@echo 'Not implemented'
|
|
|
|
test:
|
|
@python3 -m unittest discover -vcs ./backend
|
|
|
|
build:
|
|
make frontend
|
|
make backend
|
|
|
|
frontend:
|
|
@cd frontend && echo 'Not implemented'
|
|
|
|
backend:
|
|
@cd backend && echo 'Not implemented'
|