The problem is that this is only conditionally included, since the Makefile.am is only conditionally included. As a result, it is NOT included in a distribution. To get around this, we need to make sure that EXTRA_DIST is always included (not only conditionally). As a work-around, these can be included AFTER the conditional compile in Makefile.apps
Add any extra files to the EXTRA_DIST flag, i.e. in the swirl example, we have added :
The problem is that this is only conditionally included, since the Makefile.am is only conditionally included. As a result, it is NOT included in a distribution. To get around this, we need to make sure that EXTRA_DIST is always included (not only conditionally). As a work-around, these can be included AFTER the conditional compile in Makefile.apps