https://gitlab.inria.fr/cado-nfs/cado-nfs
Revision 13f7948c427bd2a08ec9e114ef8eec33b149983c authored by Emmanuel Thomé on 29 January 2021, 16:19:07 UTC, committed by Emmanuel Thomé on 31 January 2021, 21:30:12 UTC
1 parent 6f68957
Raw File
Tip revision: 13f7948c427bd2a08ec9e114ef8eec33b149983c authored by Emmanuel Thomé on 29 January 2021, 16:19:07 UTC
various fixes for containerized builds.
Tip revision: 13f7948
Makefile
TOP:=.
# only this makefile is not parallel. Of course the cmake builds are.
.NOTPARALLEL:
.PHONY: polyselect sqrt utils tags etags
# This makefile is a placeholder. Please have a look to $(TOP)/scripts/call_cmake.sh,
# and (possibly) edit a file $(TOP)/local.sh to tweak your build preferences.
all polyselect sqrt utils: ; +@MAKE=$(MAKE) $(TOP)/scripts/call_cmake.sh $@
tags: ; grep -h '^[^#].*\.[ch]' files.dist files.nodist | xargs ctags --fields=+l --langmap=c:.c.h
etags: ; grep -h '^[^#].*\.[ch]' files.dist files.nodist | xargs etags
show variables install tidy cmake dist: ; +@MAKE=$(MAKE) $(TOP)/scripts/call_cmake.sh $@
%: ; +@MAKE=$(MAKE) $(TOP)/scripts/call_cmake.sh $@
back to top