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
{{ message }}
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
Currently, editing a Makefile.am requires that the top-level bootstrap be run to ensure that the corresponding Makefile.in is updated.
This is inefficient (as bootstrap updates all Makefile.in in the tree) and error-prone (if one forgets to run bootstrap after touching a Makefile.am).
Proposed Solution
Add a rule to update Makefile.in if the corresponding Makefile.am is newer. A simple rule should suffice, as GNU make already re-parses if an include file needs to be built.
The text was updated successfully, but these errors were encountered:
By putting AM_MAINTAINER_MODE in configure.ac, it disables maintainer mode. However, you can override that by running configure --{disable,enable}-maintainer-mode, depending on the behavior you want.
You might try playing with that to see if you like the resulting behavior. That input will be informative if that's sufficient or if we want to forge ahead with addressing this uniquely.
Problem
Currently, editing a Makefile.am requires that the top-level bootstrap be run to ensure that the corresponding Makefile.in is updated.
This is inefficient (as bootstrap updates all Makefile.in in the tree) and error-prone (if one forgets to run bootstrap after touching a Makefile.am).
Proposed Solution
Add a rule to update Makefile.in if the corresponding Makefile.am is newer. A simple rule should suffice, as GNU make already re-parses if an include file needs to be built.
The text was updated successfully, but these errors were encountered: