mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-26 02:28:50 +00:00
13 lines
392 B
Makefile
13 lines
392 B
Makefile
|
PYTHON = python
|
||
|
|
||
|
all: build.ninja
|
||
|
|
||
|
# make sure this package is in 'develop' mode and up to date
|
||
|
wordfreq_builder.egg-info/PKG-INFO: setup.py
|
||
|
$(PYTHON) setup.py develop
|
||
|
|
||
|
# 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
|
||
|
wordfreq-build-deps rules.ninja > build.ninja
|
||
|
|