projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
706b1db48ac643b063dae9ae241c6218d5c0390a
[rust-101.git]
/
Makefile
1
FILES=$(wildcard src/*.rs)
2
3
all: docs rawsrc
4
.PHONY: docs rawsrc
5
6
docs:
7
@./pycco-rs $(FILES)
8
9
rawsrc:
10
@mkdir -p rawsrc
11
@for file in $(FILES); do echo "$$file -> raw$$file"; egrep -v "^[[:space:]]*// " "$$file" > "raw""$$file"; done