https://gitlab.inria.fr/cado-nfs/cado-nfs
Raw File
Tip revision: e9c1cb6eb302da957a6918b2cb260c054b90590d authored by Paul Zimmermann on 06 December 2016, 10:04:20 UTC
fixed default L1 cache size (merged commit 4ec9a94 from master)
Tip revision: e9c1cb6
Makefile
TOP:=.
# only this makefile is not parallel. Of course the cmake builds are.
.NOTPARALLEL:
.PHONY: polyselect sqrt 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: ; +@MAKE=$(MAKE) $(TOP)/scripts/call_cmake.sh $@
tags: ; grep -h '^[^#].*\.[ch]' files.dist files.nodist | grep -v ^ffs/ | xargs ctags
etags: ; grep -h '^[^#].*\.[ch]' files.dist files.nodist | grep -v ^ffs/ | 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