1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 20:30:28 +02:00

(scripts_sources): Add frisk.

(list): New target.
(overview): Also report module interfaces.
This commit is contained in:
Thien-Thi Nguyen 2002-01-08 03:53:43 +00:00
parent 600e7423fd
commit 4a8ada1e8b

View file

@ -19,13 +19,14 @@
## to the Free Software Foundation, Inc., 59 Temple Place, Suite ## to the Free Software Foundation, Inc., 59 Temple Place, Suite
## 330, Boston, MA 02111-1307 USA ## 330, Boston, MA 02111-1307 USA
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = gnu
# These should be installed and distributed. # These should be installed and distributed.
scripts_sources = \ scripts_sources = \
PROGRAM \ PROGRAM \
display-commentary \ display-commentary \
doc-snarf \ doc-snarf \
frisk \
generate-autoload \ generate-autoload \
punify \ punify \
read-scheme-source \ read-scheme-source \
@ -37,6 +38,21 @@ subpkgdata_SCRIPTS = $(scripts_sources)
EXTRA_DIST = $(scripts_sources) EXTRA_DIST = $(scripts_sources)
list:
@echo $(scripts_sources)
overview: overview:
@GUILE_LOAD_PATH=`(cd .. ; pwd)` \ @echo '----------------------------'
./display-commentary $(scripts_sources) @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)