From 4a8ada1e8b79d39b2b225843ef6f4b51f41ffec0 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Tue, 8 Jan 2002 03:53:43 +0000 Subject: [PATCH] (scripts_sources): Add frisk. (list): New target. (overview): Also report module interfaces. --- scripts/Makefile.am | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) 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)