Executable file extensions
Some platforms, such as Windows, append an extension such as ".exe" to the names of executables. Automake adjusts its own rules to accommodate this practice, but handwritten build rules that mention executable files do not necessarily do so. See for instance https://gist.github.com/jtanx/612bd6c629a76e1aa977#file-fontanvil-0-3-win-diff-L81 (@jtanx just deletes the dependency, but a proper fix should retain the dependency on the true name of the executable) and http://www.gnu.org/software/automake/manual/html_node/EXEEXT.html
Task: adjust all Tsukurimashou Project Makefile.am files to use the $(EXEEXT) variable where needed.
Hard to test, not having a system that uses it, but I think it's reasonably well handled (good enough for 0.4 anyway) in current SVN.
Some platforms, such as Windows, append an extension such as ".exe" to the names of executables. Automake adjusts its own rules to accommodate this practice, but handwritten build rules that mention executable files do not necessarily do so. See for instance https://gist.github.com/jtanx/612bd6c629a76e1aa977#file-fontanvil-0-3-win-diff-L81 (@jtanx just deletes the dependency, but a proper fix should retain the dependency on the true name of the executable) and http://www.gnu.org/software/automake/manual/html_node/EXEEXT.html
Task: adjust all Tsukurimashou Project Makefile.am files to use the $(EXEEXT) variable where needed.