8 lines
99 B
Makefile
8 lines
99 B
Makefile
|
.PHONY: clean data
|
||
|
|
||
|
data:
|
||
|
python src/make_dataset.py
|
||
|
|
||
|
clean:
|
||
|
find . -name "*.pyc" -exec rm {} \;
|