Fix a mistake in python bindings makefile (#218)

This commit is contained in:
Justin Traglia 2023-03-17 09:56:37 +00:00 committed by GitHub
parent 5e34bc0232
commit 7e755d7280
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
.PHONY: all
all: install test ecc_test
../../src/c-kzg-4844.o:
cd ../../src/ && make blst && make
../../src/c_kzg_4844.o:
make -C../../src c_kzg_4844.o
.PHONY: install
install: setup.py ckzg.c ../../src/c-kzg-4844.o
install: setup.py ckzg.c ../../src/c_kzg_4844.o
python3 setup.py install
.PHONY: test