aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJ08nY2018-07-16 15:38:20 +0200
committerJ08nY2018-07-16 15:38:20 +0200
commit891e3a97bc2015b5cc8116e637366f56942f8a82 (patch)
tree5655753df80dadc878ed90ca20d1b2c751c82a48 /Makefile
parent2428920c53ac6bb136f09f645c253d098ca1a45c (diff)
downloadecgen-891e3a97bc2015b5cc8116e637366f56942f8a82.tar.gz
ecgen-891e3a97bc2015b5cc8116e637366f56942f8a82.tar.zst
ecgen-891e3a97bc2015b5cc8116e637366f56942f8a82.zip
Add option to build ecgen with PARI linked statically.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 37bbe4d..1d87d87 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,13 @@ help:
@echo " - clean-all : cleans all"
@echo " - format : run clang-format on source files"
@echo " - help : print this help"
+ @echo
+ @echo "Available variables:"
+ @echo " - CC : The compiler to use"
+ @echo " - DEBUG : Whether to enable DEBUG build = default 0"
+ @echo " - TEST : Whether to enable TEST build(code coverage) = default 0"
+ @echo " - FAST : Whether to enable additional optimization(gcc only) = default 0"
+ @echo " - STATIC : Whether to link PARI statically = default 0"
.PHONY: all clean clean-all docs test unittest help