mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
9 lines
282 B
Makefile
9 lines
282 B
Makefile
PYTHON = python
|
|
|
|
all: build.ninja
|
|
|
|
# build the Ninja file that will take over the build process
|
|
build.ninja: rules.ninja wordfreq_builder/ninja.py wordfreq_builder/config.py wordfreq_builder.egg-info/PKG-INFO
|
|
$(PYTHON) -m wordfreq_builder.cli.build_deps rules.ninja > build.ninja
|
|
|