This forces everything to be regenerated by marking makesyscalls.lua
as .PHONY, which may be helpful in, e.g., rebase scenarios.
Requested by: kib
Differential D33357
sysent: add sysent-force targets kevans on Dec 9 2021, 5:23 AM. Authored by Tags None Referenced Files
Details
This forces everything to be regenerated by marking makesyscalls.lua Requested by: kib
Diff Detail
Event TimelineComment Actions Is sysent ever invoked as a dependency of some other part of the build? Could we just make make sysent always build? Comment Actions Right now it's never a dependency. In some ways it would be nice if it was and we could stop committing generated files, but it's potential confusing if we don't have syscalls.h and sysproto.h in the tree. Comment Actions Sorry, just getting back after being away for a few days. I don't actually have a strong preference for sysent-force vs. just having sysent always regenerate. On my less-than-stellar laptop, make -j4 sysent is a hair over half a second; given how infrequently this happens in the best case, that seems minimal enough to punt until someone complains. |