reduce from 3 to 2 packages

This commit is contained in:
Sarah Hoffmann
2024-06-27 21:26:12 +02:00
parent 139cea5720
commit 4da4cbfe27
149 changed files with 419 additions and 422 deletions

View File

@@ -2,10 +2,10 @@ all:
# Building of wheels
build: build-core build-db build-api
build: clean-build build-db build-api
build-core:
python3 -m build packaging/nominatim-core --outdir dist/
clean-build:
rm -f dist/*
build-db:
python3 -m build packaging/nominatim-db --outdir dist/
@@ -29,4 +29,4 @@ lint:
bdd:
cd test/bdd; behave -DREMOVE_TEMPLATE=1
.PHONY: tests mypy pytest lint bdd build build-core build-db build-api
.PHONY: tests mypy pytest lint bdd build clean-build build-db build-api