Revision ae34c4dc61ca8e4bcfc15c322cf3f05f130d1d5d authored by Emmanuel Thomé on 19 April 2021, 12:01:44 UTC, committed by Emmanuel Thomé on 19 April 2021, 12:01:44 UTC
The analysis is correct, but the fix in the master branch introduces a
regression with a we very important allocation overhead in some cases
(see #30014). We don't want this regression to stick in the master
branch until we merge !29.
1 parent 666731c
Raw File
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