mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-15 07:05:09 -05:00
12 lines
356 B
Makefile
12 lines
356 B
Makefile
CURVES_JSON_PATH=json/curves.json
|
|
CURVES_CPP_GEN_H=cpp/include/concrete/curves.gen.h
|
|
|
|
$(CURVES_JSON_PATH): verify_curves.py
|
|
sage verify_curves.py > $@
|
|
|
|
$(CURVES_CPP_GEN_H): cpp/gen_header.py $(CURVES_JSON_PATH)
|
|
cat $(CURVES_JSON_PATH) | python cpp/gen_header.py > $(CURVES_CPP_GEN_H)
|
|
|
|
generate-cpp-header: $(CURVES_CPP_GEN_H)
|
|
|
|
.PHONY: generate-cpp-header |