Fix makefile: .PHONY, @cmd to disable echoing, cd && cmd
This commit is contained in:
parent
1fa4d3e8e5
commit
4865506dd3
1 changed files with 6 additions and 6 deletions
12
Makefile
12
Makefile
|
@ -1,17 +1,17 @@
|
||||||
|
.PHONY: run test build frontend backend
|
||||||
|
|
||||||
run:
|
run:
|
||||||
echo 'Not implemented'
|
@echo 'Not implemented'
|
||||||
|
|
||||||
test:
|
test:
|
||||||
python3 -m unittest discover -vcs ./backend
|
@python3 -m unittest discover -vcs ./backend
|
||||||
|
|
||||||
build:
|
build:
|
||||||
make frontend
|
make frontend
|
||||||
make backend
|
make backend
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
cd ./frontend
|
@cd frontend && echo 'Not implemented'
|
||||||
echo 'Not implemented'
|
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
cd ./backend
|
@cd backend && echo 'Not implemented'
|
||||||
echo 'Not implemented'
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue