13 lines
142 B
Makefile
13 lines
142 B
Makefile
# vim: set ft=make :
|
|
|
|
##
|
|
## Utilities
|
|
##
|
|
|
|
fixme:
|
|
@egrep --color -rni '(fixme)' $(DOCS_DIR) $(SLIDES_DIR)
|
|
|
|
debug:
|
|
echo $(PWD)
|
|
|
|
.PHONY: fixme
|