diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-03-09 21:47:52 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-03-09 21:47:52 +0000 |
commit | 0c6f960254cabda5e1cf090f4c2a9775cdf2884d (patch) | |
tree | a68744d9cd2707e563f855e041b67e2260bf92f2 | |
parent | a0f9c651b1fbd70d6841669c04e58c1f00d067d4 (diff) | |
download | guile-0c6f960254cabda5e1cf090f4c2a9775cdf2884d.tar.gz |
* Makefile.am (psyntax.pp): Added rule for producing psyntax.pp.
-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)' |