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:
|
||||
echo 'Not implemented'
|
||||
@echo 'Not implemented'
|
||||
|
||||
test:
|
||||
python3 -m unittest discover -vcs ./backend
|
||||
@python3 -m unittest discover -vcs ./backend
|
||||
|
||||
build:
|
||||
make frontend
|
||||
make backend
|
||||
|
||||
frontend:
|
||||
cd ./frontend
|
||||
echo 'Not implemented'
|
||||
@cd frontend && echo 'Not implemented'
|
||||
|
||||
backend:
|
||||
cd ./backend
|
||||
echo 'Not implemented'
|
||||
@cd backend && echo 'Not implemented'
|
||||
|
|
Loading…
Reference in a new issue