Reorganize project structure: move modules to neopig/, scripts to scripts/, data to data/
This commit is contained in:
parent
ee7a193d0f
commit
58c93f217a
28 changed files with 37 additions and 37 deletions
6
Makefile
6
Makefile
|
|
@ -12,7 +12,7 @@ install: venv
|
|||
$(PIP) install -r requirements.txt
|
||||
|
||||
test: install
|
||||
$(PYTHON) test_crawl.py
|
||||
$(PYTHON) -m pytest tests/ -v --tb=short
|
||||
|
||||
crawl: install
|
||||
$(PYTHON) neopig.py $(ARGS)
|
||||
|
|
@ -21,8 +21,8 @@ archive: install
|
|||
$(PYTHON) archive.py $(ARGS)
|
||||
|
||||
# Build bootstrap binary for self-extracting archives
|
||||
bootstrap: bootstrap.c
|
||||
gcc -O2 -Wall -o bootstrap bootstrap.c -lz
|
||||
bootstrap: scripts/bootstrap.c
|
||||
gcc -O2 -Wall -o bootstrap scripts/bootstrap.c -lz
|
||||
@echo "Built: bootstrap ($$(stat -c%s bootstrap 2>/dev/null || stat -f%z bootstrap) bytes)"
|
||||
|
||||
# Create self-extracting .run from a tarball
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue