summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2002-01-08 03:46:50 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2002-01-08 03:46:50 +0000
commit881ecf9bddc026ea601792058a5d64647dbf820a (patch)
tree9d5b2795e624f9db4f2dfaf49370517b9466c038
parent454c700e22ee718f67c23ba22311ef74837a9c49 (diff)
downloadguile-881ecf9bddc026ea601792058a5d64647dbf820a.tar.gz
(scripts_sources): Add frisk.
(list): New target. (overview): Also report module interfaces.
-rw-r--r--scripts/Makefile.am20
1 files changed, 18 insertions, 2 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index effdfe8df..4bcc3f257 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -26,6 +26,7 @@ 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)