You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rule for making _CoqProject considers it to be up-to-date whenever it exists. Therefore it is never remade, even when you, e.g., change the Makefile or switch to or from EXTERNAL_DEPENDENCIES=1. The solution is to declare _CoqProject to be PHONY. (I presume some of the dependencies of bedrock2 also have this same issue.)
The text was updated successfully, but these errors were encountered:
Declaring _CoqProject as PHONY sounds like saying "_CoqProject is not a file", which feels wrong to me. How about making it depend on the force target instead?
The rule for making
_CoqProject
considers it to be up-to-date whenever it exists. Therefore it is never remade, even when you, e.g., change theMakefile
or switch to or fromEXTERNAL_DEPENDENCIES=1
. The solution is to declare_CoqProject
to bePHONY
. (I presume some of the dependencies of bedrock2 also have this same issue.)The text was updated successfully, but these errors were encountered: