Makefile stub + make test

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

17
Makefile Normal file
View file

@ -0,0 +1,17 @@
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'