https://gitlab.inria.fr/cado-nfs/cado-nfs
Raw File
Tip revision: ae5c727e0280e3049899b82b5e5a7ca765c7412d authored by Emmanuel Thomé on 12 June 2021, 16:35:00 UTC
Merge branch 'fix-30019' into 'master'
Tip revision: ae5c727
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