Skip to content

Commit 625c55e

Browse files
authored
Merge pull request #563 from maxim-belkin/phony-targets
Makefile: fix up PHONY targets
2 parents 13d218a + b1ca20a commit 625c55e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,14 @@ ifeq (,$(PYTHON))
3131
endif
3232

3333

34-
# Controls
35-
.PHONY : commands clean files
36-
3734
# Default target
3835
.DEFAULT_GOAL := commands
3936

4037
## I. Commands for both workshop and lesson websites
4138
## =================================================
4239

40+
.PHONY: site docker-serve repo-check clean clean-rmd
41+
4342
## * serve : render website and run a local server
4443
serve : lesson-md
4544
${JEKYLL} serve
@@ -160,6 +159,8 @@ lesson-fixme :
160159
## IV. Auxililary (plumbing) commands
161160
## =================================================
162161

162+
.PHONY : commands
163+
163164
## * commands : show all commands.
164165
commands :
165166
@sed -n -e '/^##/s|^##[[:space:]]*||p' $(MAKEFILE_LIST)

0 commit comments

Comments
 (0)