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
As discussed in #35, there's currently no check that the src/Makefile.am is kept up-to-date if new files are added.
Probably the best/easiest thing (as suggested in #35 (comment)) is to write a script that checks this. This should also get run as part of the travis tests that run on new PR's to make sure they add anything that might be needed.
The text was updated successfully, but these errors were encountered:
delete the multi-line assignment of liberfa_la_SOURCES in src/Makefile.am.in
add lines in configure.ac before the AC_CONFIG_FILES() with something
that copies all c source files, excluding the test code:
(cd Makefile ;
cp Makefile.am.in Makefile.am ;
echo liberfa_la_SOURCES = $(ls -w 4096 -t *.c *.h | grep -v t_erfa ) >> Makefile.am
)
@rmathar - that sounds like a reasonable idea... would you like to make a PR that makes these changes? (since it's your idea that way you'd get credit for the commits).
As discussed in #35, there's currently no check that the
src/Makefile.am
is kept up-to-date if new files are added.Probably the best/easiest thing (as suggested in #35 (comment)) is to write a script that checks this. This should also get run as part of the travis tests that run on new PR's to make sure they add anything that might be needed.
The text was updated successfully, but these errors were encountered: