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
Update all redundant files using just make -f Makefile-cigraph
Some components (flex, bison) in the Makefile need specific versions of the tools, which is why we advise to run make in Docker. But we actually don't need to run the entire Makefile, running only the flex and bison parts in Docker is sufficient.
Should be optional, perhaps omitting flex and bison under some conditions?
More precise rules
Running make -f Makefile-cigraph should "just work" in more cases, even without the -B switch. These days, often it seems we need -B because changes are not detected
Update all redundant files using just
make -f Makefile-cigraphSome components (flex, bison) in the
Makefileneed specific versions of the tools, which is why we advise to runmakein Docker. But we actually don't need to run the entireMakefile, running only the flex and bison parts in Docker is sufficient.Avoid Docker dependency: chore: Fix drift after code generation #1278 (comment)
Should be optional, perhaps omitting
flexandbisonunder some conditions?More precise rules
Running
make -f Makefile-cigraphshould "just work" in more cases, even without the-Bswitch. These days, often it seems we need-Bbecause changes are not detectedInclude other tooling into the Makefile
Example: updating the vendored sources
Fix
make docsand other potential broken rules (make docsfails #913)Clean up documentation in
src/README.md