diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 373f03d69..4bcc3f257 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -19,13 +19,14 @@ ## to the Free Software Foundation, Inc., 59 Temple Place, Suite ## 330, Boston, MA 02111-1307 USA -AUTOMAKE_OPTIONS = foreign +AUTOMAKE_OPTIONS = gnu # These should be installed and distributed. scripts_sources = \ PROGRAM \ display-commentary \ doc-snarf \ + frisk \ generate-autoload \ punify \ read-scheme-source \ @@ -37,6 +38,21 @@ subpkgdata_SCRIPTS = $(scripts_sources) EXTRA_DIST = $(scripts_sources) +list: + @echo $(scripts_sources) + overview: - @GUILE_LOAD_PATH=`(cd .. ; pwd)` \ - ./display-commentary $(scripts_sources) + @echo '----------------------------' + @echo Overview + @echo I. Commentaries + @echo II. Module Interfaces + @echo '----------------------------' + @echo I. Commentaries + @echo '----------------------------' + @GUILE_LOAD_PATH=`(cd $(srcdir)/.. ; pwd)` \ + $(srcdir)/display-commentary $(scripts_sources) + @echo '----------------------------' + @echo II. Module Interfaces + @echo '----------------------------' + @GUILE_LOAD_PATH=`(cd $(srcdir)/.. ; pwd)` \ + $(srcdir)/frisk $(scripts_sources)