diff options
-rw-r--r-- | ice-9/ChangeLog | 4 | ||||
-rw-r--r-- | ice-9/Makefile.am | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 67b350f40..149e6b4f7 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,7 @@ +2001-03-09 Mikael Djurfeldt <mdj@linnaeus.mit.edu> + + * Makefile.am (psyntax.pp): Added rule for producing psyntax.pp. + 2001-03-09 Keisuke Nishida <kxn30@po.cwru.edu> * match.scm: export defstruct. diff --git a/ice-9/Makefile.am b/ice-9/Makefile.am index 5bfe317e8..b3c276242 100644 --- a/ice-9/Makefile.am +++ b/ice-9/Makefile.am @@ -43,3 +43,6 @@ install-data-local: ## test.scm is not currently installed. EXTRA_DIST = $(ice9_sources) test.scm and-let-star-compat.scm + +psyntax.pp: + cd $(srcdir) && guile -c '(load-from-path "ice-9/syncase") (psyncomp)' |