FRC in Just
#2534
-
How would I do the following in just? https://github.com/leahneukirchen/px/blob/master/Makefile#L24 The equivalent of FRC or force rebuild all deps? |
Beta Was this translation helpful? Give feedback.
Answered by
casey
Dec 20, 2024
Replies: 1 comment 1 reply
-
I think something like FRC isn't required, because all |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jgarte
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think something like FRC isn't required, because all
just
recipes are.PHONY
recipes, so they always run, regardless of which files are or aren't present and how fresh they are.